lvyb commited on
Commit
15becb4
β€’
1 Parent(s): 6ae25fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -14,7 +14,12 @@ examples = [[os.path.join(os.path.dirname(__file__), "lion.jpg")], [os.path.join
14
  app = gr.Interface.from_pipeline(pipe, examples=examples, title='ε›Ύη‰‡θ―†εˆ«')
15
 
16
 
17
- demo = gr.TabbedInterface([sd_demo, app], ["ζ–‡ε­—η”Ÿζˆε›Ύη‰‡", "ε›Ύη‰‡θ―†εˆ«"])
 
 
 
 
 
18
 
19
 
20
  demo.launch()
 
14
  app = gr.Interface.from_pipeline(pipe, examples=examples, title='ε›Ύη‰‡θ―†εˆ«')
15
 
16
 
17
+ pipe = pipeline("dreamlike-art/dreamlike-photoreal-2.0")
18
+ examples = [["落ζ—₯"], ["ζ²™ζ»©"]]
19
+ app_v1 = gr.Interface.from_pipeline(pipe, examples=examples, title='ε›Ύη‰‡η”Ÿζˆ')
20
+
21
+
22
+ demo = gr.TabbedInterface([sd_demo, app, app_v1], ["ζ–‡ε­—η”Ÿζˆε›Ύη‰‡", "ε›Ύη‰‡θ―†εˆ«", "ζ–‡ε­—η”Ÿζˆε›Ύη‰‡v1"])
23
 
24
 
25
  demo.launch()