andresgtn commited on
Commit
d95e404
·
1 Parent(s): 1999586

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -75,15 +75,15 @@ description = "Write the name of a celebrity, and pick a Bond movie from the dro
75
  with the new celebrity in it. See below for explanation of the\
76
  input variables."
77
  article= "Inputs explained: \n Guidance: the lower, the more random the output\
78
- image. Improve and scale: if selected, the image will be refined\
79
- using GFP-GAN (google it), and scaled (if scale is >1)."
80
 
81
  demo = gr.Interface(
82
  fn=generate,
83
  inputs=[gr.Textbox(value="Emma Watson"),
84
  gr.Dropdown(movie_options, value="Skyfall (2012)"),
85
  gr.Slider(1, 20, value=7.5, step=0.5),
86
- gr.Checkbox(label="Improve and scale? (extra time)"),
87
  gr.Slider(1, 3, value=1, step=0.5)
88
  ],
89
  outputs='image',
 
75
  with the new celebrity in it. See below for explanation of the\
76
  input variables."
77
  article= "Inputs explained: \n Guidance: the lower, the more random the output\
78
+ image. Improve and scale: if selected, the image resolution will be increased\
79
+ using GFP-GAN (google it), and it's size increased (if scale is >1)."
80
 
81
  demo = gr.Interface(
82
  fn=generate,
83
  inputs=[gr.Textbox(value="Emma Watson"),
84
  gr.Dropdown(movie_options, value="Skyfall (2012)"),
85
  gr.Slider(1, 20, value=7.5, step=0.5),
86
+ gr.Checkbox(label="Improve and scale? (takes longer to process)"),
87
  gr.Slider(1, 3, value=1, step=0.5)
88
  ],
89
  outputs='image',