Sreeharshan commited on
Commit
9c9bc6e
1 Parent(s): 0b0294f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -155,6 +155,11 @@ title = "Anime Image Convertor"
155
  description = "Anime image convertor in different styles"
156
  article = ""
157
 
 
 
 
 
 
158
 
159
  gr.Interface(
160
  fn=inference,
@@ -176,6 +181,7 @@ gr.Interface(
176
  title=title,
177
  description=description,
178
  article=article,
 
179
  allow_flagging="never",
180
  allow_screenshot=False,
181
  ).launch(enable_queue=True)
 
155
  description = "Anime image convertor in different styles"
156
  article = ""
157
 
158
+ examples = [
159
+ ["examples/garden_in.jpg", STYLE_SHINKAI],
160
+ ["examples/library_in.jpg", STYLE_KON],
161
+ ]
162
+
163
 
164
  gr.Interface(
165
  fn=inference,
 
181
  title=title,
182
  description=description,
183
  article=article,
184
+ examples=examples,
185
  allow_flagging="never",
186
  allow_screenshot=False,
187
  ).launch(enable_queue=True)