Spaces:
Runtime error
Runtime error
Dagfinn1962
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,23 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
examples = [
|
4 |
+
", 1 girl, hyper realistic,solo, naked, submerged, in water, scandinavianlooks, pale skin, full lips, large breasts, submerged breasts, river, lake, rain, looking at viewer, face focus, side view, absurdres, detailed, volumetric lighting, realistic, , expressive, masterpiece, 4K",
|
5 |
+
]
|
6 |
+
|
7 |
+
css="""
|
8 |
+
#col-container {
|
9 |
+
background:#cbc2c2;
|
10 |
+
padding: 10px;
|
11 |
+
color:#000000:
|
12 |
+
font-weight:400;
|
13 |
+
margin: 10 auto;
|
14 |
+
border: 1px #FFFFFF;
|
15 |
+
border-radius:15px;
|
16 |
+
max-width: 100%;
|
17 |
+
min-width: 600px;
|
18 |
+
}
|
19 |
+
"""
|
20 |
+
with gr.Column(elem_id="col-container"):
|
21 |
+
with gr.Blocks(css=css) as demo:
|
22 |
+
|
23 |
+
gr.load("models/stabilityai/stable-diffusion-3.5-large").demo.launch()
|