Spaces:
Runtime error
Runtime error
Duskfallcrew
commited on
Commit
•
e05d50c
1
Parent(s):
673a374
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,19 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.Interface.load("models/Duskfallcrew/Osenayan_Mix").launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
gr.Interface.load("models/Duskfallcrew/Osenayan_Mix").launch()
|
4 |
+
|
5 |
+
css = """.main-div div{display:inline-flex;align-items:center;gap:.8rem;font-size:1.75rem}.main-div div h1{font-weight:900;margin-bottom:7px}.main-div p{margin-bottom:10px;font-size:94%}a{text-decoration:underline}.tabs{margin-top:0;margin-bottom:0}#gallery{min-height:20rem}
|
6 |
+
"""
|
7 |
+
with gr.Blocks(css=css) as demo:
|
8 |
+
gr.HTML(
|
9 |
+
f"""
|
10 |
+
<div class="main-div">
|
11 |
+
<div>
|
12 |
+
<h1>Osenayan Mix</h1>
|
13 |
+
</div>
|
14 |
+
<p>
|
15 |
+
Demo for <a href="https://huggingface.co/Duskfallcrew/Osenayan_Mix">Osenayan Mix</a> Stable Diffusion model. We stream a lot of our testing on <a href="https://www.twitch.tv/duskfallcrew"> Twitch </a>. Any chance you can spare a coffee or three? <a href="https://ko-fi.com/DUSKFALLcrew">Ko-Fi Anyone?</a>. Request image gens via our <a href="https://www.pixiv.net/en/users/70748346"> Pixiv</a>. Hang with us on discord: <a href="https://discord.gg/Da7s8d3KJ7"> Earth & Dusk Discord </a>. No tokens are required. <br>
|
16 |
+
|
17 |
+
</div>
|
18 |
+
"""
|
19 |
+
)
|