Staticaliza commited on
Commit
11453ec
·
verified ·
1 Parent(s): b0abbc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,7 +19,7 @@ print(f"[SYSTEM] | Using {DEVICE} type compute device.")
19
  MAX_SEED = 9007199254740991
20
  DEFAULT_INPUT = ""
21
  DEFAULT_NEGATIVE_INPUT = "EasyNegative, deformed, distorted, disfigured, disconnected, disgusting, mutation, mutated, blur, blurry, scribble, abstract, watermark, ugly, amputation, limb, limbs, leg, legs, foot, feet, toe, toes, arm, arms, hand, hands, finger, fingers, head, heads, exposed, porn, nude, nudity, naked, nsfw"
22
- DEFAULT_MODEL = "None"
23
  DEFAULT_HEIGHT = 1024
24
  DEFAULT_WIDTH = 1024
25
 
@@ -101,7 +101,7 @@ with gr.Blocks(css=css) as main:
101
  with gr.Column():
102
  input = gr.Textbox(lines=1, value=DEFAULT_INPUT, label="Input")
103
  negative_input = gr.Textbox(lines=1, value=DEFAULT_NEGATIVE_INPUT, label="Input Negative")
104
- model = gr.Dropdown(label="Models", choices=["Default", "Anime"], value=["Default"])
105
  height = gr.Slider(minimum=1, maximum=2160, step=1, value=DEFAULT_HEIGHT, label="Height")
106
  width = gr.Slider(minimum=1, maximum=2160, step=1, value=DEFAULT_WIDTH, label="Width")
107
  steps = gr.Slider(minimum=0, maximum=100, step=1, value=16, label="Steps")
 
19
  MAX_SEED = 9007199254740991
20
  DEFAULT_INPUT = ""
21
  DEFAULT_NEGATIVE_INPUT = "EasyNegative, deformed, distorted, disfigured, disconnected, disgusting, mutation, mutated, blur, blurry, scribble, abstract, watermark, ugly, amputation, limb, limbs, leg, legs, foot, feet, toe, toes, arm, arms, hand, hands, finger, fingers, head, heads, exposed, porn, nude, nudity, naked, nsfw"
22
+ DEFAULT_MODEL = "Default"
23
  DEFAULT_HEIGHT = 1024
24
  DEFAULT_WIDTH = 1024
25
 
 
101
  with gr.Column():
102
  input = gr.Textbox(lines=1, value=DEFAULT_INPUT, label="Input")
103
  negative_input = gr.Textbox(lines=1, value=DEFAULT_NEGATIVE_INPUT, label="Input Negative")
104
+ model = gr.Dropdown(label="Models", choices=["Default", "Anime"], value="Default")
105
  height = gr.Slider(minimum=1, maximum=2160, step=1, value=DEFAULT_HEIGHT, label="Height")
106
  width = gr.Slider(minimum=1, maximum=2160, step=1, value=DEFAULT_WIDTH, label="Width")
107
  steps = gr.Slider(minimum=0, maximum=100, step=1, value=16, label="Steps")