Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,20 +1,25 @@
|
|
|
|
1 |
from diffusers import DiffusionPipeline
|
2 |
import torch
|
|
|
3 |
|
4 |
-
#
|
5 |
-
|
6 |
|
|
|
|
|
|
|
7 |
|
8 |
-
|
|
|
9 |
|
10 |
-
#
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
-
|
14 |
-
image = pipe(prompt).images[0]
|
15 |
-
|
16 |
-
# Display the image
|
17 |
-
image.show()
|
18 |
-
|
19 |
-
# Print a message
|
20 |
-
print("How cool is this!")
|
|
|
1 |
+
import streamlit as st
|
2 |
from diffusers import DiffusionPipeline
|
3 |
import torch
|
4 |
+
from PIL import Image
|
5 |
|
6 |
+
# Streamlit app title
|
7 |
+
st.title("Stable Diffusion Image Generator")
|
8 |
|
9 |
+
# Load the diffusion pipeline
|
10 |
+
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2-1-base", torch_dtype=torch.float32)
|
11 |
+
pipe.to("cpu") # Use CPU for inference
|
12 |
|
13 |
+
# Get user input (prompt)
|
14 |
+
prompt = st.text_input("What do you want to see?", "A beautiful landscape")
|
15 |
|
16 |
+
# Button to generate image
|
17 |
+
if st.button('Generate Image'):
|
18 |
+
with st.spinner('Generating...'):
|
19 |
+
# Generate image
|
20 |
+
image = pipe(prompt).images[0]
|
21 |
+
|
22 |
+
# Display image in Streamlit
|
23 |
+
st.image(image, caption="Generated Image", use_column_width=True)
|
24 |
|
25 |
+
st.success("Image generated successfully!")
|
|
|
|
|
|
|
|
|
|
|
|
|
|