PierrunoYT commited on
Commit
6c1e0ef
·
verified ·
1 Parent(s): bc8f563

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +247 -240
app.py CHANGED
@@ -1,240 +1,247 @@
1
- import logging
2
- import random
3
- import warnings
4
- import os
5
- import gradio as gr
6
- import numpy as np
7
- import torch
8
- import devicetorch
9
- from diffusers import FluxControlNetModel
10
- from diffusers.pipelines import FluxControlNetPipeline
11
- from gradio_imageslider import ImageSlider
12
- from PIL import Image
13
- from huggingface_hub import snapshot_download
14
-
15
- css = """
16
- #col-container {
17
- margin: 0 auto;
18
- max-width: 512px;
19
- }
20
- """
21
-
22
- device = devicetorch.get(torch)
23
- power_device = "GPU" if device != "cpu" else "CPU"
24
-
25
- huggingface_token = os.getenv("HUGGINFACE_TOKEN")
26
-
27
- model_path = snapshot_download(
28
- repo_id="black-forest-labs/FLUX.1-dev",
29
- repo_type="model",
30
- ignore_patterns=["*.md", "*..gitattributes"],
31
- local_dir="FLUX.1-dev",
32
- token=huggingface_token, # type a new token-id.
33
- )
34
-
35
-
36
- # Load pipeline
37
- controlnet = FluxControlNetModel.from_pretrained(
38
- "jasperai/Flux.1-dev-Controlnet-Upscaler", torch_dtype=torch.bfloat16
39
- ).to(device)
40
- pipe = FluxControlNetPipeline.from_pretrained(
41
- model_path, controlnet=controlnet, torch_dtype=torch.bfloat16
42
- )
43
- pipe.to(device)
44
-
45
- MAX_SEED = 1000000
46
- MAX_PIXEL_BUDGET = 1024 * 1024
47
-
48
-
49
- def process_input(input_image, upscale_factor, **kwargs):
50
- w, h = input_image.size
51
- w_original, h_original = w, h
52
- aspect_ratio = w / h
53
-
54
- was_resized = False
55
-
56
- if w * h * upscale_factor**2 > MAX_PIXEL_BUDGET:
57
- warnings.warn(
58
- f"Requested output image is too large ({w * upscale_factor}x{h * upscale_factor}). Resizing to ({int(aspect_ratio * MAX_PIXEL_BUDGET ** 0.5 // upscale_factor), int(MAX_PIXEL_BUDGET ** 0.5 // aspect_ratio // upscale_factor)}) pixels."
59
- )
60
- gr.Info(
61
- f"Requested output image is too large ({w * upscale_factor}x{h * upscale_factor}). Resizing input to ({int(aspect_ratio * MAX_PIXEL_BUDGET ** 0.5 // upscale_factor), int(MAX_PIXEL_BUDGET ** 0.5 // aspect_ratio // upscale_factor)}) pixels budget."
62
- )
63
- input_image = input_image.resize(
64
- (
65
- int(aspect_ratio * MAX_PIXEL_BUDGET**0.5 // upscale_factor),
66
- int(MAX_PIXEL_BUDGET**0.5 // aspect_ratio // upscale_factor),
67
- )
68
- )
69
- was_resized = True
70
-
71
- # resize to multiple of 8
72
- w, h = input_image.size
73
- w = w - w % 8
74
- h = h - h % 8
75
-
76
- return input_image.resize((w, h)), w_original, h_original, was_resized
77
-
78
-
79
- def infer(
80
- seed,
81
- randomize_seed,
82
- input_image,
83
- num_inference_steps,
84
- upscale_factor,
85
- controlnet_conditioning_scale,
86
- progress=gr.Progress(track_tqdm=True),
87
- ):
88
- if randomize_seed:
89
- seed = random.randint(0, MAX_SEED)
90
- true_input_image = input_image
91
- input_image, w_original, h_original, was_resized = process_input(
92
- input_image, upscale_factor
93
- )
94
-
95
- # rescale with upscale factor
96
- w, h = input_image.size
97
- control_image = input_image.resize((w * upscale_factor, h * upscale_factor))
98
-
99
- generator = torch.Generator().manual_seed(seed)
100
-
101
- gr.Info("Upscaling image...")
102
- image = pipe(
103
- prompt="",
104
- control_image=control_image,
105
- controlnet_conditioning_scale=controlnet_conditioning_scale,
106
- num_inference_steps=num_inference_steps,
107
- guidance_scale=3.5,
108
- height=control_image.size[1],
109
- width=control_image.size[0],
110
- generator=generator,
111
- ).images[0]
112
-
113
- if was_resized:
114
- gr.Info(
115
- f"Resizing output image to targeted {w_original * upscale_factor}x{h_original * upscale_factor} size."
116
- )
117
-
118
- # resize to target desired size
119
- image = image.resize((w_original * upscale_factor, h_original * upscale_factor))
120
- image.save("output.jpg")
121
- # convert to numpy
122
- return [true_input_image, image, seed]
123
-
124
-
125
- with gr.Blocks(css=css) as demo:
126
- # with gr.Column(elem_id="col-container"):
127
- gr.Markdown(
128
- f"""
129
- # ⚡ Flux.1-dev Upscaler ControlNet ⚡
130
- This is an interactive demo of [Flux.1-dev Upscaler ControlNet](https://huggingface.co/jasperai/Flux.1-dev-Controlnet-Upscaler) taking as input a low resolution image to generate a high resolution image.
131
- Currently running on {power_device}.
132
-
133
- *Note*: Even though the model can handle higher resolution images, due to GPU memory constraints, this demo was limited to a generated output not exceeding a pixel budget of 1024x1024. If the requested size exceeds that limit, the input will be first resized keeping the aspect ratio such that the output of the controlNet model does not exceed the allocated pixel budget. The output is then resized to the targeted shape using a simple resizing. This may explain some artifacts for high resolution input. To adress this, run the demo locally or consider implementing a tiling strategy. Happy upscaling! 🚀
134
- """
135
- )
136
-
137
- with gr.Row():
138
- run_button = gr.Button(value="Run")
139
-
140
- with gr.Row():
141
- with gr.Column(scale=4):
142
- input_im = gr.Image(label="Input Image", type="pil")
143
- with gr.Column(scale=1):
144
- num_inference_steps = gr.Slider(
145
- label="Number of Inference Steps",
146
- minimum=8,
147
- maximum=50,
148
- step=1,
149
- value=28,
150
- )
151
- upscale_factor = gr.Slider(
152
- label="Upscale Factor",
153
- minimum=1,
154
- maximum=4,
155
- step=1,
156
- value=4,
157
- )
158
- controlnet_conditioning_scale = gr.Slider(
159
- label="Controlnet Conditioning Scale",
160
- minimum=0.1,
161
- maximum=1.5,
162
- step=0.1,
163
- value=0.6,
164
- )
165
- seed = gr.Slider(
166
- label="Seed",
167
- minimum=0,
168
- maximum=MAX_SEED,
169
- step=1,
170
- value=42,
171
- )
172
-
173
- randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
174
-
175
- with gr.Row():
176
- result = ImageSlider(label="Input / Output", type="pil", interactive=True)
177
-
178
- examples = gr.Examples(
179
- examples=[
180
- # [42, False, "examples/image_1.jpg", 28, 4, 0.6],
181
- [42, False, "examples/image_2.jpg", 28, 4, 0.6],
182
- # [42, False, "examples/image_3.jpg", 28, 4, 0.6],
183
- [42, False, "examples/image_4.jpg", 28, 4, 0.6],
184
- # [42, False, "examples/image_5.jpg", 28, 4, 0.6],
185
- # [42, False, "examples/image_6.jpg", 28, 4, 0.6],
186
- ],
187
- inputs=[
188
- seed,
189
- randomize_seed,
190
- input_im,
191
- num_inference_steps,
192
- upscale_factor,
193
- controlnet_conditioning_scale,
194
- ],
195
- fn=infer,
196
- outputs=result,
197
- cache_examples="lazy",
198
- )
199
-
200
- # examples = gr.Examples(
201
- # examples=[
202
- # #[42, False, "examples/image_1.jpg", 28, 4, 0.6],
203
- # [42, False, "examples/image_2.jpg", 28, 4, 0.6],
204
- # #[42, False, "examples/image_3.jpg", 28, 4, 0.6],
205
- # #[42, False, "examples/image_4.jpg", 28, 4, 0.6],
206
- # [42, False, "examples/image_5.jpg", 28, 4, 0.6],
207
- # [42, False, "examples/image_6.jpg", 28, 4, 0.6],
208
- # [42, False, "examples/image_7.jpg", 28, 4, 0.6],
209
- # ],
210
- # inputs=[
211
- # seed,
212
- # randomize_seed,
213
- # input_im,
214
- # num_inference_steps,
215
- # upscale_factor,
216
- # controlnet_conditioning_scale,
217
- # ],
218
- # )
219
-
220
- gr.Markdown("**Disclaimer:**")
221
- gr.Markdown(
222
- "This demo is only for research purpose. Jasper cannot be held responsible for the generation of NSFW (Not Safe For Work) content through the use of this demo. Users are solely responsible for any content they create, and it is their obligation to ensure that it adheres to appropriate and ethical standards. Jasper provides the tools, but the responsibility for their use lies with the individual user."
223
- )
224
- gr.on(
225
- [run_button.click],
226
- fn=infer,
227
- inputs=[
228
- seed,
229
- randomize_seed,
230
- input_im,
231
- num_inference_steps,
232
- upscale_factor,
233
- controlnet_conditioning_scale,
234
- ],
235
- outputs=result,
236
- show_api=False,
237
- # show_progress="minimal",
238
- )
239
-
240
- demo.queue().launch(share=False, show_api=False)
 
 
 
 
 
 
 
 
1
+ import logging
2
+ import random
3
+ import warnings
4
+ import os
5
+ import gradio as gr
6
+ import numpy as np
7
+ import spaces
8
+ import torch
9
+ from diffusers import FluxControlNetModel
10
+ from diffusers.pipelines import FluxControlNetPipeline
11
+ from gradio_imageslider import ImageSlider
12
+ from PIL import Image
13
+ from huggingface_hub import snapshot_download
14
+
15
+ css = """
16
+ #col-container {
17
+ margin: 0 auto;
18
+ max-width: 512px;
19
+ }
20
+ """
21
+
22
+ if torch.cuda.is_available():
23
+ power_device = "GPU"
24
+ device = "cuda"
25
+ else:
26
+ power_device = "CPU"
27
+ device = "cpu"
28
+
29
+
30
+ huggingface_token = os.getenv("HUGGINFACE_TOKEN")
31
+
32
+ model_path = snapshot_download(
33
+ repo_id="black-forest-labs/FLUX.1-dev",
34
+ repo_type="model",
35
+ ignore_patterns=["*.md", "*..gitattributes"],
36
+ local_dir="FLUX.1-dev",
37
+ token=huggingface_token, # type a new token-id.
38
+ )
39
+
40
+
41
+ # Load pipeline
42
+ controlnet = FluxControlNetModel.from_pretrained(
43
+ "jasperai/Flux.1-dev-Controlnet-Upscaler", torch_dtype=torch.bfloat16
44
+ ).to(device)
45
+ pipe = FluxControlNetPipeline.from_pretrained(
46
+ model_path, controlnet=controlnet, torch_dtype=torch.bfloat16
47
+ )
48
+ pipe.to(device)
49
+
50
+ MAX_SEED = 1000000
51
+ MAX_PIXEL_BUDGET = 1024 * 1024
52
+
53
+
54
+ def process_input(input_image, upscale_factor, **kwargs):
55
+ w, h = input_image.size
56
+ w_original, h_original = w, h
57
+ aspect_ratio = w / h
58
+
59
+ was_resized = False
60
+
61
+ if w * h * upscale_factor**2 > MAX_PIXEL_BUDGET:
62
+ warnings.warn(
63
+ f"Requested output image is too large ({w * upscale_factor}x{h * upscale_factor}). Resizing to ({int(aspect_ratio * MAX_PIXEL_BUDGET ** 0.5 // upscale_factor), int(MAX_PIXEL_BUDGET ** 0.5 // aspect_ratio // upscale_factor)}) pixels."
64
+ )
65
+ gr.Info(
66
+ f"Requested output image is too large ({w * upscale_factor}x{h * upscale_factor}). Resizing input to ({int(aspect_ratio * MAX_PIXEL_BUDGET ** 0.5 // upscale_factor), int(MAX_PIXEL_BUDGET ** 0.5 // aspect_ratio // upscale_factor)}) pixels budget."
67
+ )
68
+ input_image = input_image.resize(
69
+ (
70
+ int(aspect_ratio * MAX_PIXEL_BUDGET**0.5 // upscale_factor),
71
+ int(MAX_PIXEL_BUDGET**0.5 // aspect_ratio // upscale_factor),
72
+ )
73
+ )
74
+ was_resized = True
75
+
76
+ # resize to multiple of 8
77
+ w, h = input_image.size
78
+ w = w - w % 8
79
+ h = h - h % 8
80
+
81
+ return input_image.resize((w, h)), w_original, h_original, was_resized
82
+
83
+
84
+ @spaces.GPU#(duration=42)
85
+ def infer(
86
+ seed,
87
+ randomize_seed,
88
+ input_image,
89
+ num_inference_steps,
90
+ upscale_factor,
91
+ controlnet_conditioning_scale,
92
+ progress=gr.Progress(track_tqdm=True),
93
+ ):
94
+ if randomize_seed:
95
+ seed = random.randint(0, MAX_SEED)
96
+ true_input_image = input_image
97
+ input_image, w_original, h_original, was_resized = process_input(
98
+ input_image, upscale_factor
99
+ )
100
+
101
+ # rescale with upscale factor
102
+ w, h = input_image.size
103
+ control_image = input_image.resize((w * upscale_factor, h * upscale_factor))
104
+
105
+ generator = torch.Generator().manual_seed(seed)
106
+
107
+ gr.Info("Upscaling image...")
108
+ image = pipe(
109
+ prompt="",
110
+ control_image=control_image,
111
+ controlnet_conditioning_scale=controlnet_conditioning_scale,
112
+ num_inference_steps=num_inference_steps,
113
+ guidance_scale=3.5,
114
+ height=control_image.size[1],
115
+ width=control_image.size[0],
116
+ generator=generator,
117
+ ).images[0]
118
+
119
+ if was_resized:
120
+ gr.Info(
121
+ f"Resizing output image to targeted {w_original * upscale_factor}x{h_original * upscale_factor} size."
122
+ )
123
+
124
+ # resize to target desired size
125
+ image = image.resize((w_original * upscale_factor, h_original * upscale_factor))
126
+ image.save("output.jpg")
127
+ # convert to numpy
128
+ return [true_input_image, image, seed]
129
+
130
+
131
+ with gr.Blocks(css=css) as demo:
132
+ # with gr.Column(elem_id="col-container"):
133
+ gr.Markdown(
134
+ f"""
135
+ # ⚡ Flux.1-dev Upscaler ControlNet ⚡
136
+ This is an interactive demo of [Flux.1-dev Upscaler ControlNet](https://huggingface.co/jasperai/Flux.1-dev-Controlnet-Upscaler) taking as input a low resolution image to generate a high resolution image.
137
+ Currently running on {power_device}.
138
+
139
+ *Note*: Even though the model can handle higher resolution images, due to GPU memory constraints, this demo was limited to a generated output not exceeding a pixel budget of 1024x1024. If the requested size exceeds that limit, the input will be first resized keeping the aspect ratio such that the output of the controlNet model does not exceed the allocated pixel budget. The output is then resized to the targeted shape using a simple resizing. This may explain some artifacts for high resolution input. To adress this, run the demo locally or consider implementing a tiling strategy. Happy upscaling! 🚀
140
+ """
141
+ )
142
+
143
+ with gr.Row():
144
+ run_button = gr.Button(value="Run")
145
+
146
+ with gr.Row():
147
+ with gr.Column(scale=4):
148
+ input_im = gr.Image(label="Input Image", type="pil")
149
+ with gr.Column(scale=1):
150
+ num_inference_steps = gr.Slider(
151
+ label="Number of Inference Steps",
152
+ minimum=8,
153
+ maximum=50,
154
+ step=1,
155
+ value=28,
156
+ )
157
+ upscale_factor = gr.Slider(
158
+ label="Upscale Factor",
159
+ minimum=1,
160
+ maximum=4,
161
+ step=1,
162
+ value=4,
163
+ )
164
+ controlnet_conditioning_scale = gr.Slider(
165
+ label="Controlnet Conditioning Scale",
166
+ minimum=0.1,
167
+ maximum=1.5,
168
+ step=0.1,
169
+ value=0.6,
170
+ )
171
+ seed = gr.Slider(
172
+ label="Seed",
173
+ minimum=0,
174
+ maximum=MAX_SEED,
175
+ step=1,
176
+ value=42,
177
+ )
178
+
179
+ randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
180
+
181
+ with gr.Row():
182
+ result = ImageSlider(label="Input / Output", type="pil", interactive=True)
183
+
184
+ examples = gr.Examples(
185
+ examples=[
186
+ # [42, False, "examples/image_1.jpg", 28, 4, 0.6],
187
+ [42, False, "examples/image_2.jpg", 28, 4, 0.6],
188
+ # [42, False, "examples/image_3.jpg", 28, 4, 0.6],
189
+ [42, False, "examples/image_4.jpg", 28, 4, 0.6],
190
+ # [42, False, "examples/image_5.jpg", 28, 4, 0.6],
191
+ # [42, False, "examples/image_6.jpg", 28, 4, 0.6],
192
+ ],
193
+ inputs=[
194
+ seed,
195
+ randomize_seed,
196
+ input_im,
197
+ num_inference_steps,
198
+ upscale_factor,
199
+ controlnet_conditioning_scale,
200
+ ],
201
+ fn=infer,
202
+ outputs=result,
203
+ cache_examples="lazy",
204
+ )
205
+
206
+ # examples = gr.Examples(
207
+ # examples=[
208
+ # #[42, False, "examples/image_1.jpg", 28, 4, 0.6],
209
+ # [42, False, "examples/image_2.jpg", 28, 4, 0.6],
210
+ # #[42, False, "examples/image_3.jpg", 28, 4, 0.6],
211
+ # #[42, False, "examples/image_4.jpg", 28, 4, 0.6],
212
+ # [42, False, "examples/image_5.jpg", 28, 4, 0.6],
213
+ # [42, False, "examples/image_6.jpg", 28, 4, 0.6],
214
+ # [42, False, "examples/image_7.jpg", 28, 4, 0.6],
215
+ # ],
216
+ # inputs=[
217
+ # seed,
218
+ # randomize_seed,
219
+ # input_im,
220
+ # num_inference_steps,
221
+ # upscale_factor,
222
+ # controlnet_conditioning_scale,
223
+ # ],
224
+ # )
225
+
226
+ gr.Markdown("**Disclaimer:**")
227
+ gr.Markdown(
228
+ "This demo is only for research purpose. Jasper cannot be held responsible for the generation of NSFW (Not Safe For Work) content through the use of this demo. Users are solely responsible for any content they create, and it is their obligation to ensure that it adheres to appropriate and ethical standards. Jasper provides the tools, but the responsibility for their use lies with the individual user."
229
+ )
230
+ gr.on(
231
+ [run_button.click],
232
+ fn=infer,
233
+ inputs=[
234
+ seed,
235
+ randomize_seed,
236
+ input_im,
237
+ num_inference_steps,
238
+ upscale_factor,
239
+ controlnet_conditioning_scale,
240
+ ],
241
+ outputs=result,
242
+ show_api=False,
243
+ # show_progress="minimal",
244
+ )
245
+
246
+ demo.queue().launch(share=False, show_api=False)
247
+