Spaces:
Running
on
Zero
Running
on
Zero
fix slider steps
Browse files
app.py
CHANGED
@@ -311,7 +311,7 @@ Image model: [IllustriousXL v0.1](https://huggingface.co/OnomaAIResearch/Illustr
|
|
311 |
label="Width",
|
312 |
minimum=640,
|
313 |
maximum=MAX_IMAGE_SIZE,
|
314 |
-
step=
|
315 |
value=960, # Replace with defaults that work for your model
|
316 |
)
|
317 |
|
@@ -319,7 +319,7 @@ Image model: [IllustriousXL v0.1](https://huggingface.co/OnomaAIResearch/Illustr
|
|
319 |
label="Height",
|
320 |
minimum=640,
|
321 |
maximum=MAX_IMAGE_SIZE,
|
322 |
-
step=
|
323 |
value=1344, # Replace with defaults that work for your model
|
324 |
)
|
325 |
|
|
|
311 |
label="Width",
|
312 |
minimum=640,
|
313 |
maximum=MAX_IMAGE_SIZE,
|
314 |
+
step=64,
|
315 |
value=960, # Replace with defaults that work for your model
|
316 |
)
|
317 |
|
|
|
319 |
label="Height",
|
320 |
minimum=640,
|
321 |
maximum=MAX_IMAGE_SIZE,
|
322 |
+
step=64,
|
323 |
value=1344, # Replace with defaults that work for your model
|
324 |
)
|
325 |
|