johnberg commited on
Commit
acbc4ce
·
1 Parent(s): 96ae396

add example input

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -75,4 +75,6 @@ def manipulate(input_image, caption):
75
 
76
  gr.Interface(fn=manipulate,
77
  inputs=[gr.Image(type="pil"), "text"],
78
- outputs="image",).launch()
 
 
 
75
 
76
  gr.Interface(fn=manipulate,
77
  inputs=[gr.Image(type="pil"), "text"],
78
+ outputs="image",
79
+ examples=[['example.jpg', "He has mustache"]],
80
+ title="CLIPInverter").launch()