philipp-zettl commited on
Commit
44f1bc6
1 Parent(s): 963ae47

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -8
app.py CHANGED
@@ -33,14 +33,18 @@ app = gr.Interface(
33
  gr.Slider(min=1, max=10, default=1, label='Number samples'),
34
  ],
35
  outputs=gr.Gallery(),
36
- )
37
- with app as demo:
38
-
39
- demo.examples = [
40
- "Colorful line shading by JON_JUAREZ a dark cave with toxic mushrooms",
41
-
 
 
 
 
 
42
  ]
43
- gr.Slider(label="seed")
44
-
45
 
46
  demo.launch()
 
33
  gr.Slider(min=1, max=10, default=1, label='Number samples'),
34
  ],
35
  outputs=gr.Gallery(),
36
+ examples=[
37
+ [
38
+ "Colorful line shading by JON_JUAREZ a dark cave with toxic mushrooms",
39
+ "",
40
+ 45,
41
+ 512,
42
+ 512,
43
+ 1
44
+ ]
45
+
46
+
47
  ]
48
+ )
 
49
 
50
  demo.launch()