ghoskno commited on
Commit
1f7767c
1 Parent(s): 7bc24ed

update: update example

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -148,13 +148,13 @@ with block:
148
  gr.Examples(
149
  examples=[
150
  ["./asserts/1.png", "a concept art of by Makoto Shinkai, a girl is standing in the middle of the sea", "text, bad anatomy, blurry, (low quality, blurry)"],
151
- ["./asserts/2.png", "a concept illustration with saturated vivid watercolors by Erin Hanson and Moebius stylized graphic scene", "text, bad anatomy, blurry, (low quality, blurry)"],
152
  ["./asserts/3.png", "sky city on the sea, with waves churning and wind power plants on the island", "text, bad anatomy, blurry, (low quality, blurry)"],
153
  ],
154
  inputs=[
155
  input_image, prompt, n_prompt
156
  ],
157
- outputs=result_gallery,
158
  fn=process,
159
  cache_examples=True,
160
  )
 
148
  gr.Examples(
149
  examples=[
150
  ["./asserts/1.png", "a concept art of by Makoto Shinkai, a girl is standing in the middle of the sea", "text, bad anatomy, blurry, (low quality, blurry)"],
151
+ ["./asserts/2.png", "a concept art with vivid ocean by Makoto Shinkai", "text, bad anatomy, blurry, (low quality, blurry)"],
152
  ["./asserts/3.png", "sky city on the sea, with waves churning and wind power plants on the island", "text, bad anatomy, blurry, (low quality, blurry)"],
153
  ],
154
  inputs=[
155
  input_image, prompt, n_prompt
156
  ],
157
+ outputs=[result_gallery],
158
  fn=process,
159
  cache_examples=True,
160
  )