Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -33,6 +33,16 @@ MODEL = os.getenv(
|
|
33 |
"https://huggingface.co/AstraliteHeart/pony-diffusion-v6/blob/main/v6.safetensors",
|
34 |
)
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
torch.backends.cudnn.deterministic = True
|
37 |
torch.backends.cudnn.benchmark = False
|
38 |
|
@@ -245,10 +255,7 @@ else:
|
|
245 |
with gr.Blocks(css="style.css") as demo:
|
246 |
|
247 |
|
248 |
-
gr.Markdown(
|
249 |
-
f"""Gradio demo for [Pony Diffusion V6](https://civitai.com/models/257749/pony-diffusion-v6-xl/) with image gallery, json support, and advanced options for power users.""",
|
250 |
-
elem_id="subtitle",
|
251 |
-
)
|
252 |
|
253 |
gr.DuplicateButton(
|
254 |
value="Duplicate Space for private use",
|
|
|
33 |
"https://huggingface.co/AstraliteHeart/pony-diffusion-v6/blob/main/v6.safetensors",
|
34 |
)
|
35 |
|
36 |
+
DESCRIPTION = '''
|
37 |
+
<div>
|
38 |
+
<h1 style="text-align: center;">PMB Basic with Multi-User Chat Rooms</h1>
|
39 |
+
<p> Gradio demo for [Pony Diffusion V6](https://civitai.com/models/257749/pony-diffusion-v6-xl/) with image gallery, json support, and advanced options for power users.</p>
|
40 |
+
<p>🔎 For more details about me, take a look at <a href="https://sergidev.me">My website</a>.</p>
|
41 |
+
<p>🌚 For dark mode, click <a href="https://sergidev.me/hdiffusion">here</a>.</p>
|
42 |
+
<p>❤️ Heart this space if you like it!</p>
|
43 |
+
</div>
|
44 |
+
'''
|
45 |
+
|
46 |
torch.backends.cudnn.deterministic = True
|
47 |
torch.backends.cudnn.benchmark = False
|
48 |
|
|
|
255 |
with gr.Blocks(css="style.css") as demo:
|
256 |
|
257 |
|
258 |
+
gr.Markdown(DESCRIPTION)
|
|
|
|
|
|
|
259 |
|
260 |
gr.DuplicateButton(
|
261 |
value="Duplicate Space for private use",
|