Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -116,6 +116,7 @@ Stochastic Rectified Differential Equations*](https://rf-inversion.github.io/dat
|
|
| 116 |
result = gr.Image(label="Result")
|
| 117 |
|
| 118 |
with gr.Accordion("Advanced Settings", open=False):
|
|
|
|
| 119 |
seed = gr.Slider(
|
| 120 |
label="Seed",
|
| 121 |
minimum=0,
|
|
@@ -125,6 +126,14 @@ Stochastic Rectified Differential Equations*](https://rf-inversion.github.io/dat
|
|
| 125 |
)
|
| 126 |
|
| 127 |
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
|
| 129 |
with gr.Row():
|
| 130 |
width = gr.Slider(
|
|
|
|
| 116 |
result = gr.Image(label="Result")
|
| 117 |
|
| 118 |
with gr.Accordion("Advanced Settings", open=False):
|
| 119 |
+
|
| 120 |
seed = gr.Slider(
|
| 121 |
label="Seed",
|
| 122 |
minimum=0,
|
|
|
|
| 126 |
)
|
| 127 |
|
| 128 |
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
|
| 129 |
+
|
| 130 |
+
num_inversion_steps = gr.Slider(
|
| 131 |
+
label="num inversion steps",
|
| 132 |
+
minimum=1,
|
| 133 |
+
maximum=50,
|
| 134 |
+
step=32,
|
| 135 |
+
value=28,
|
| 136 |
+
)
|
| 137 |
|
| 138 |
with gr.Row():
|
| 139 |
width = gr.Slider(
|