hysts HF staff commited on
Commit
5bd6412
1 Parent(s): 55cf602

Add 'none' to the style choices

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -39,6 +39,7 @@ def main():
39
  translate = gr.Checkbox(label='Translate to Chinese',
40
  value=False)
41
  style = gr.Dropdown(choices=[
 
42
  'mainbody',
43
  'photo',
44
  'flat',
@@ -49,6 +50,7 @@ def main():
49
  'chinese',
50
  'watercolor',
51
  ],
 
52
  label='Style')
53
  seed = gr.Slider(0,
54
  100000,
 
39
  translate = gr.Checkbox(label='Translate to Chinese',
40
  value=False)
41
  style = gr.Dropdown(choices=[
42
+ 'none',
43
  'mainbody',
44
  'photo',
45
  'flat',
 
50
  'chinese',
51
  'watercolor',
52
  ],
53
+ value='mainbody',
54
  label='Style')
55
  seed = gr.Slider(0,
56
  100000,