TenPoisk
commited on
Commit
·
98e735c
1
Parent(s):
c1a5ea7
Rename app.py to sd-2-1.py
Browse files
app.py
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
|
3 |
-
gr.Interface.load("models/stabilityai/stable-diffusion-2-1").launch()
|
|
|
|
|
|
|
|
sd-2-1.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#import
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
#description
|
5 |
+
description = """<div>
|
6 |
+
CofAI.SD
|
7 |
+
</div>
|
8 |
+
"""
|
9 |
+
|
10 |
+
#model
|
11 |
+
gr.Interface.load("models/stabilityai/stable-diffusion-2-1", description=description).launch()
|