File size: 365 Bytes
6f9524a ade680e 6f9524a ade680e 3b0170d ade680e b5f689f 7da94b5 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
from diffusers import DiffusionPipeline
prompt = st.text_input('Describe the type of pokemon you would like to see:')
if(prompt):
st.spinner(text='Generating your pokemon...')
pipe = DiffusionPipeline.from_pretrained("justinpinkney/pokemon-stable-diffusion")
image = pipe(prompt).images[0]
if(image):
st.image(image) |