linoyts HF Staff commited on
Commit
f9c5fe7
·
verified ·
1 Parent(s): 9abe3f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -189,12 +189,12 @@ with gr.Blocks(css=css) as demo:
189
 
190
  gr.Examples(
191
  examples=[
192
- ["./assets/5_before.png", "sunset over sea", "warm golden and orange sunset light reflecting off water, creating a romantic and peaceful atmosphere with soft, diffused lighting and gentle color gradients", 0, True, 2.5],
193
- ["./assets/3_before.png", "sci-fi RGB glowing, cyberpunk", "futuristic RGB lighting with electric blues, hot pinks, and neon greens creating a high-tech atmosphere with dramatic color separation and glowing effects", 0, True, 2.5],
194
- ["./assets/2_before.png", "neon night, city", "vibrant neon lights in electric blues, magentas, and greens casting colorful reflections on wet surfaces, creating a cyberpunk urban atmosphere with dramatic color contrasts", 0, True, 2.5],
195
- ["./assets/before_6.png", "golden time", "warm golden hour lighting with soft, diffused sunlight creating a magical glow, enhanced contrast, and rich warm tones throughout the scene", 0, True, 2.5]
196
  ],
197
- inputs=[input_image, illumination_dropdown, prompt, seed, randomize_seed, guidance_scale],
198
  outputs=[result, seed],
199
  fn=infer,
200
  cache_examples="lazy"
 
189
 
190
  gr.Examples(
191
  examples=[
192
+ ["./assets/5_before.png", "warm golden and orange sunset light reflecting off water, creating a romantic and peaceful atmosphere with soft, diffused lighting and gentle color gradients", "sunset over sea", 0, True, 2.5],
193
+ ["./assets/3_before.png", "futuristic RGB lighting with electric blues, hot pinks, and neon greens creating a high-tech atmosphere with dramatic color separation and glowing effects", "sci-fi RGB glowing, cyberpunk",0, True, 2.5],
194
+ ["./assets/2_before.png", "vibrant neon lights in electric blues, magentas, and greens casting colorful reflections on wet surfaces, creating a cyberpunk urban atmosphere with dramatic color contrasts", "neon night, city",0, True, 2.5],
195
+ ["./assets/before_6.png", "warm golden hour lighting with soft, diffused sunlight creating a magical glow, enhanced contrast, and rich warm tones throughout the scene", "golden time", 0, True, 2.5]
196
  ],
197
+ inputs=[input_image, prompt, illumination_dropdown, seed, randomize_seed, guidance_scale],
198
  outputs=[result, seed],
199
  fn=infer,
200
  cache_examples="lazy"