Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -173,6 +173,10 @@ with gr.Blocks(css='style.css') as demo:
|
|
173 |
container=False,
|
174 |
)
|
175 |
run = gr.Button("Generate Images").style(full_width=False)
|
|
|
|
|
|
|
|
|
176 |
gr.HTML(
|
177 |
"""
|
178 |
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
@@ -184,11 +188,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
184 |
</div>
|
185 |
</div>
|
186 |
"""
|
187 |
-
|
188 |
-
with gr.Row():
|
189 |
-
with gr.Row():
|
190 |
-
#Now that the first box generates a picture with noise=0 having the default at 0 makes no sense as it'd generate the same image 6 times.
|
191 |
-
noise_level = gr.Slider(minimum=0.2, maximum=3, step=0.1, label="Noise Level (0.1 or less was generating the same pic 6 times! 🤣)")
|
192 |
with gr.Row():
|
193 |
with gr.Row():
|
194 |
output1=gr.Image(label="PhotoMovieX",show_label=False,min_width=640)
|
|
|
173 |
container=False,
|
174 |
)
|
175 |
run = gr.Button("Generate Images").style(full_width=False)
|
176 |
+
with gr.Row():
|
177 |
+
with gr.Row():
|
178 |
+
#Now that the first box generates a picture with noise=0 having the default at 0 makes no sense as it'd generate the same image 6 times.
|
179 |
+
noise_level = gr.Slider(minimum=0.2, maximum=3, step=0.1, label="Noise Level (0.1 or less was generating the same pic 6 times! 🤣)")
|
180 |
gr.HTML(
|
181 |
"""
|
182 |
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
|
|
188 |
</div>
|
189 |
</div>
|
190 |
"""
|
191 |
+
)
|
|
|
|
|
|
|
|
|
192 |
with gr.Row():
|
193 |
with gr.Row():
|
194 |
output1=gr.Image(label="PhotoMovieX",show_label=False,min_width=640)
|