Update app.py
Browse files
app.py
CHANGED
@@ -11,10 +11,11 @@ def create_model(loc = "stabilityai/stable-diffusion-2-1-base", mch = 'cpu'):
|
|
11 |
pipe = pipe.to(mch)
|
12 |
return pipe
|
13 |
|
14 |
-
t2i = st.title("""
|
15 |
-
|
16 |
-
|
17 |
-
-
|
|
|
18 |
|
19 |
the_type = st.selectbox("Model Name",("stabilityai/stable-diffusion-2-1-base",
|
20 |
"CompVis/stable-diffusion-v1-4"))
|
|
|
11 |
pipe = pipe.to(mch)
|
12 |
return pipe
|
13 |
|
14 |
+
t2i = st.title("""
|
15 |
+
# Text2Image
|
16 |
+
###### `CHECK "Create_Update_Model"` :
|
17 |
+
- `FIRST RUN OF THE CODE`
|
18 |
+
- `CHANGING MODEL`""")
|
19 |
|
20 |
the_type = st.selectbox("Model Name",("stabilityai/stable-diffusion-2-1-base",
|
21 |
"CompVis/stable-diffusion-v1-4"))
|