Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
|
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()
|