Spaces:
Runtime error
Runtime error
apolinario
commited on
Commit
•
b5d8077
1
Parent(s):
4e33b53
More restrictive default settings
Browse files
app.py
CHANGED
@@ -125,11 +125,11 @@ image = gr.outputs.Image(type="pil", label="Your result")
|
|
125 |
css = ".output-image{height: 528px !important} .output-carousel .output-image{height:272px !important}"
|
126 |
iface = gr.Interface(fn=run, inputs=[
|
127 |
gr.inputs.Textbox(label="Prompt - try adding increments to your prompt such as 'oil on canvas', 'a painting', 'a book cover'",default="The drawing of a dog wearing a funny hat"),
|
128 |
-
gr.inputs.Slider(label="Steps - more steps can increase quality but will take longer to generate",default=
|
129 |
-
gr.inputs.Radio(label="Width", choices=[32,64,128,256
|
130 |
-
gr.inputs.Radio(label="Height", choices=[32,64,128,256
|
131 |
-
gr.inputs.Slider(label="Images - How many images you wish to generate", default=
|
132 |
-
gr.inputs.Slider(label="Diversity scale - How different from one another you wish the images to be",default=5.0, minimum=1.0, maximum=
|
133 |
#gr.inputs.Slider(label="ETA - between 0 and 1. Lower values can provide better quality, higher values can be more diverse",default=0.0,minimum=0.0, maximum=1.0,step=0.1),
|
134 |
],
|
135 |
outputs=[image,gr.outputs.Carousel(label="Individual images",components=["image"])],
|
|
|
125 |
css = ".output-image{height: 528px !important} .output-carousel .output-image{height:272px !important}"
|
126 |
iface = gr.Interface(fn=run, inputs=[
|
127 |
gr.inputs.Textbox(label="Prompt - try adding increments to your prompt such as 'oil on canvas', 'a painting', 'a book cover'",default="The drawing of a dog wearing a funny hat"),
|
128 |
+
gr.inputs.Slider(label="Steps - more steps can increase quality but will take longer to generate",default=45,maximum=50,minimum=1,step=1),
|
129 |
+
gr.inputs.Radio(label="Width", choices=[32,64,128,256],default=256),
|
130 |
+
gr.inputs.Radio(label="Height", choices=[32,64,128,256],default=256),
|
131 |
+
gr.inputs.Slider(label="Images - How many images you wish to generate", default=2, step=1, minimum=1, maximum=4),
|
132 |
+
gr.inputs.Slider(label="Diversity scale - How different from one another you wish the images to be",default=5.0, minimum=1.0, maximum=15.0),
|
133 |
#gr.inputs.Slider(label="ETA - between 0 and 1. Lower values can provide better quality, higher values can be more diverse",default=0.0,minimum=0.0, maximum=1.0,step=0.1),
|
134 |
],
|
135 |
outputs=[image,gr.outputs.Carousel(label="Individual images",components=["image"])],
|