Keiraj commited on
Commit
32e29ce
·
verified ·
1 Parent(s): de28523

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -13
app.py CHANGED
@@ -1,20 +1,25 @@
 
1
  from diffusers import DiffusionPipeline
2
  import torch
 
3
 
4
- # Load the pipeline
5
- pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2-1-base", torch_dtype=torch.float16)
6
 
 
 
 
7
 
8
- pipe.to("cpu")
 
9
 
10
- # Get the prompt from the user
11
- prompt = input("What do you want to see? ")
 
 
 
 
 
 
12
 
13
- # Generate the image
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!")