p1atdev commited on
Commit
c38e04c
β€’
1 Parent(s): 6d961c4

fix slider steps

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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=128,
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=128,
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