Spaces:
Runtime error
Runtime error
add title and description (#6)
Browse files- add title and description (32fd1cb8719b3ce0ce206255b2c750fef609e3b7)
Co-authored-by: Ahsen Khaliq <[email protected]>
app.py
CHANGED
|
@@ -15,6 +15,27 @@ def inference(prompt, guidance, steps):
|
|
| 15 |
return all_images
|
| 16 |
|
| 17 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
with gr.Row():
|
| 19 |
|
| 20 |
with gr.Column():
|
|
|
|
| 15 |
return all_images
|
| 16 |
|
| 17 |
with gr.Blocks() as demo:
|
| 18 |
+
gr.HTML(
|
| 19 |
+
"""
|
| 20 |
+
<div style="text-align: center; max-width: 700px; margin: 0 auto;">
|
| 21 |
+
<div
|
| 22 |
+
style="
|
| 23 |
+
display: inline-flex;
|
| 24 |
+
align-items: center;
|
| 25 |
+
gap: 0.8rem;
|
| 26 |
+
font-size: 1.75rem;
|
| 27 |
+
"
|
| 28 |
+
>
|
| 29 |
+
<h1 style="font-weight: 900; margin-bottom: 7px;">
|
| 30 |
+
Arcane Diffusion
|
| 31 |
+
</h1>
|
| 32 |
+
</div>
|
| 33 |
+
<p style="margin-bottom: 10px; font-size: 94%">
|
| 34 |
+
Demo for a fine-tuned Stable Diffusion model trained on images from the TV Show Arcane.
|
| 35 |
+
</p>
|
| 36 |
+
</div>
|
| 37 |
+
"""
|
| 38 |
+
)
|
| 39 |
with gr.Row():
|
| 40 |
|
| 41 |
with gr.Column():
|