Spaces:
Sleeping
Sleeping
update
Browse files
app.py
CHANGED
@@ -68,10 +68,7 @@ with gr.Blocks(css=css) as demo:
|
|
68 |
with gr.Row():
|
69 |
with gr.Column():
|
70 |
gr.HTML(
|
71 |
-
"""
|
72 |
-
<h1 style='text-align: center'>
|
73 |
-
FLUX.1-dev
|
74 |
-
</h1>
|
75 |
"""
|
76 |
)
|
77 |
gr.HTML(
|
@@ -93,7 +90,7 @@ with gr.Blocks(css=css) as demo:
|
|
93 |
height = gr.Slider(label="Height", info="Height of the Image", minimum=256, maximum=1024, step=32, value=1024)
|
94 |
with gr.Row():
|
95 |
seed = gr.Slider(value=42, minimum=0, maximum=MAX_SEED, step=1, label="Seed", info="A starting point to initiate the generation process, put 0 for a random one")
|
96 |
-
num_images_per_prompt = gr.Slider(label="Images Per Prompt", info="Number of Images to generate with the settings",minimum=1, maximum=4, step=1, value=
|
97 |
|
98 |
gr.Examples(
|
99 |
examples=examples,
|
|
|
68 |
with gr.Row():
|
69 |
with gr.Column():
|
70 |
gr.HTML(
|
71 |
+
""" # FLUX.1-dev
|
|
|
|
|
|
|
72 |
"""
|
73 |
)
|
74 |
gr.HTML(
|
|
|
90 |
height = gr.Slider(label="Height", info="Height of the Image", minimum=256, maximum=1024, step=32, value=1024)
|
91 |
with gr.Row():
|
92 |
seed = gr.Slider(value=42, minimum=0, maximum=MAX_SEED, step=1, label="Seed", info="A starting point to initiate the generation process, put 0 for a random one")
|
93 |
+
num_images_per_prompt = gr.Slider(label="Images Per Prompt", info="Number of Images to generate with the settings",minimum=1, maximum=4, step=1, value=1)
|
94 |
|
95 |
gr.Examples(
|
96 |
examples=examples,
|