Manjushri commited on
Commit
ab6b2b3
·
1 Parent(s): 4551a9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ gr.Interface(
36
  gr.Image(type="filepath", label = "Raw Image"),
37
  gr.Textbox(label='Guide the AI Upscaling'),
38
  gr.Textbox(label='What you do not want AI to generate during Upscaling'),
39
- gr.Slider(0, 0, 3, label='Guidance Scale')],
40
  outputs=gr.Image(type="filepath", label = "Upscaled Image"),
41
  title="SD Image Upscaler",
42
  description="Upscale an image using either the SD 2.0 2x Latent Upscaler or the SD 2.1 4x Upscaler. Use the 4x Upscaler for images lower than 512x512. Use the 2x Upscaler for images 512x512 to 768x768"
 
36
  gr.Image(type="filepath", label = "Raw Image"),
37
  gr.Textbox(label='Guide the AI Upscaling'),
38
  gr.Textbox(label='What you do not want AI to generate during Upscaling'),
39
+ gr.Slider(minimum=0, value=0, maximum=3, label='Guidance Scale')],
40
  outputs=gr.Image(type="filepath", label = "Upscaled Image"),
41
  title="SD Image Upscaler",
42
  description="Upscale an image using either the SD 2.0 2x Latent Upscaler or the SD 2.1 4x Upscaler. Use the 4x Upscaler for images lower than 512x512. Use the 2x Upscaler for images 512x512 to 768x768"