Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ def remove_background(image: Image.Image, threshold: int = 50) -> Image.Image:
|
|
35 |
#pipe = FluxInpaintPipeline.from_pretrained(
|
36 |
# "black-forest-labs/FLUX.1-schnell", torch_dtype=torch.bfloat16).to(DEVICE)
|
37 |
pipe2 = FluxImg2ImgPipeline.from_pretrained(
|
38 |
-
"black-forest-labs/FLUX.1-
|
39 |
|
40 |
def resize_image_dimensions(
|
41 |
original_resolution_wh: Tuple[int, int],
|
@@ -169,7 +169,7 @@ with gr.Blocks() as demo:
|
|
169 |
minimum=0,
|
170 |
maximum=1,
|
171 |
step=0.01,
|
172 |
-
value=0.
|
173 |
)
|
174 |
|
175 |
num_inference_steps_slider_component = gr.Slider(
|
@@ -179,7 +179,7 @@ with gr.Blocks() as demo:
|
|
179 |
minimum=1,
|
180 |
maximum=50,
|
181 |
step=1,
|
182 |
-
value=
|
183 |
)
|
184 |
with gr.Column():
|
185 |
output_image_component = gr.Image(
|
|
|
35 |
#pipe = FluxInpaintPipeline.from_pretrained(
|
36 |
# "black-forest-labs/FLUX.1-schnell", torch_dtype=torch.bfloat16).to(DEVICE)
|
37 |
pipe2 = FluxImg2ImgPipeline.from_pretrained(
|
38 |
+
"black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to(DEVICE)
|
39 |
|
40 |
def resize_image_dimensions(
|
41 |
original_resolution_wh: Tuple[int, int],
|
|
|
169 |
minimum=0,
|
170 |
maximum=1,
|
171 |
step=0.01,
|
172 |
+
value=0.8,
|
173 |
)
|
174 |
|
175 |
num_inference_steps_slider_component = gr.Slider(
|
|
|
179 |
minimum=1,
|
180 |
maximum=50,
|
181 |
step=1,
|
182 |
+
value=28,
|
183 |
)
|
184 |
with gr.Column():
|
185 |
output_image_component = gr.Image(
|