ajsbsd commited on
Commit
f1bbddf
·
1 Parent(s): 6f168c5
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -270,8 +270,8 @@ with gr.Blocks(title=title, css=css, theme=gr.themes.Soft()) as demo:
270
  gr.Markdown("### 🎯 Examples")
271
  gr.Examples(
272
  examples=[
273
- ["", "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/input_image_vermeer.png", "make it a van gogh painting", "blurry, low quality", 0.8, 7.5, 30, 42],
274
- ["", "", "turn into a cyberpunk cityscape", "blurry, distorted", 0.9, 8.0, 30, 123],
275
  ],
276
  inputs=[uploaded_image, image_url, prompt, negative_prompt, strength, guidance_scale, num_inference_steps, seed],
277
  )
 
270
  gr.Markdown("### 🎯 Examples")
271
  gr.Examples(
272
  examples=[
273
+ [None, "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/input_image_vermeer.png", "make it a van gogh painting", "blurry, low quality", 0.8, 7.5, 30, 42],
274
+ [None, "https://picsum.photos/512/512?random=1", "turn into a cyberpunk cityscape", "blurry, distorted", 0.9, 8.0, 30, 123],
275
  ],
276
  inputs=[uploaded_image, image_url, prompt, negative_prompt, strength, guidance_scale, num_inference_steps, seed],
277
  )