Ahsen Khaliq commited on
Commit
8bb3110
1 Parent(s): f6edc5a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -66,4 +66,5 @@ title = "Animeganv2"
66
  description = "Gradio demo for AnimeGanv2 Face Portrait v2. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
67
  article = "<p style='text-align: center'><a href='https://github.com/bryandlee/animegan2-pytorch'>Github Repo</a></p>"
68
 
69
- gr.Interface(inference, gr.inputs.Image(type="pil"), gr.outputs.Image(type="pil")).launch()
 
66
  description = "Gradio demo for AnimeGanv2 Face Portrait v2. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
67
  article = "<p style='text-align: center'><a href='https://github.com/bryandlee/animegan2-pytorch'>Github Repo</a></p>"
68
 
69
+ examples=[['groot.jpeg']]
70
+ gr.Interface(inference, gr.inputs.Image(type="pil"), gr.outputs.Image(type="pil"),title=title,description=description,article=article,examples=examples,enable_queue=True).launch()