TenPoisk
commited on
Commit
·
7609357
1
Parent(s):
eec808e
Update sd-2-1.py
Browse files
sd-2-1.py
CHANGED
@@ -14,4 +14,12 @@ article = """
|
|
14 |
</p>
|
15 |
"""
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
</p>
|
15 |
"""
|
16 |
|
17 |
+
theme = gr.themes.Monochrome(
|
18 |
+
primary_hue="indigo",
|
19 |
+
secondary_hue="blue",
|
20 |
+
neutral_hue="slate",
|
21 |
+
radius_size=gr.themes.sizes.radius_sm,
|
22 |
+
font=[gr.themes.GoogleFont("Open Sans"), "ui-sans-serif", "system-ui", "sans-serif"],
|
23 |
+
)
|
24 |
+
|
25 |
+
gr.Interface.load("models/stabilityai/stable-diffusion-2-1", title=title, description=description, article=article, theme=theme).launch()
|