app
Browse files
app.py
CHANGED
@@ -299,7 +299,7 @@ with gr.Blocks(css=css) as demo:
|
|
299 |
step=0.1,
|
300 |
value=7.0, # Replace with defaults that work for your model
|
301 |
)
|
302 |
-
|
303 |
num_inference_steps = gr.Slider(
|
304 |
label="Number of inference steps",
|
305 |
minimum=1,
|
@@ -307,7 +307,7 @@ with gr.Blocks(css=css) as demo:
|
|
307 |
step=1,
|
308 |
value=50, # Replace with defaults that work for your model
|
309 |
)
|
310 |
-
|
311 |
num_of_interpolation = gr.Slider(
|
312 |
label="Number of images for interpolation",
|
313 |
minimum=5,
|
|
|
299 |
step=0.1,
|
300 |
value=7.0, # Replace with defaults that work for your model
|
301 |
)
|
302 |
+
with gr.Row():
|
303 |
num_inference_steps = gr.Slider(
|
304 |
label="Number of inference steps",
|
305 |
minimum=1,
|
|
|
307 |
step=1,
|
308 |
value=50, # Replace with defaults that work for your model
|
309 |
)
|
310 |
+
with gr.Row():
|
311 |
num_of_interpolation = gr.Slider(
|
312 |
label="Number of images for interpolation",
|
313 |
minimum=5,
|