Shuang59 commited on
Commit
b29ac56
β€’
1 Parent(s): fe5b0a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -305,7 +305,14 @@ examples_1 = 'a camel | a forest'
305
  examples_2 = 'A cloudy blue sky | A mountain in the horizon | Cherry Blossoms in front of the mountain'
306
  examples_3 = '0.1, 0.5 | 0.3, 0.5 | 0.5, 0.5 | 0.7, 0.5 | 0.9, 0.5'
307
  examples_4 = 'a river leading into a mountain | red trees on the side'
308
- examples = [[examples_1, 'GLIDE', 10], [examples_4, 'Stable_Diffusion_1v_4', 10], [examples_2, 'GLIDE', 10], [examples_3, 'CLEVR Objects', 10]]
 
 
 
 
 
 
 
309
 
310
  import gradio as gr
311
 
 
305
  examples_2 = 'A cloudy blue sky | A mountain in the horizon | Cherry Blossoms in front of the mountain'
306
  examples_3 = '0.1, 0.5 | 0.3, 0.5 | 0.5, 0.5 | 0.7, 0.5 | 0.9, 0.5'
307
  examples_4 = 'a river leading into a mountain | red trees on the side'
308
+ examples_5 = 'a white church on a hill | birds flying around the church'
309
+ examples_6 = 'a boat in a desert | a pink sky'
310
+ examples = [[examples_4, 'Stable_Diffusion_1v_4', 10],
311
+ [examples_5, 'Stable_Diffusion_1v_4', 10],
312
+ [examples_6, 'Stable_Diffusion_1v_4', 10],
313
+ [examples_1, 'GLIDE', 10],
314
+ [examples_2, 'GLIDE', 10],
315
+ [examples_3, 'CLEVR Objects', 10]]
316
 
317
  import gradio as gr
318