Spaces:
Runtime error
Runtime error
phenomenon1981
commited on
Commit
·
3c8e2ed
1
Parent(s):
334e3b7
Update app.py
Browse files
app.py
CHANGED
@@ -105,7 +105,13 @@ with gr.Blocks() as myface:
|
|
105 |
#run.click(send_it7, inputs=[prompt, noise_level], outputs=[output7])
|
106 |
#run.click(send_it8, inputs=[prompt, noise_level], outputs=[output8])
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
myface.launch(enable_queue=True, inline=True)
|
109 |
-
block.queue(concurrency_count=100)
|
110 |
-
article = """---
|
111 |
-
Demo for <a href="https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0">Dreamlike Photoreal 2.0</a> Stable Diffusion model."""
|
|
|
105 |
#run.click(send_it7, inputs=[prompt, noise_level], outputs=[output7])
|
106 |
#run.click(send_it8, inputs=[prompt, noise_level], outputs=[output8])
|
107 |
|
108 |
+
with gr.Row():
|
109 |
+
# other components
|
110 |
+
article = gr.HTML("""
|
111 |
+
Demo for <a href="https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0">Dreamlike Photoreal 2.0</a> Stable Diffusion model.
|
112 |
+
""")
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
myface.launch(enable_queue=True, inline=True)
|
117 |
+
block.queue(concurrency_count=100)
|
|
|
|