Spaces:
Runtime error
Runtime error
File size: 566 Bytes
f106518 446b3d5 f106518 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
from transformers import pipeline
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained('runwayml/stable-diffusion-v1-5')
def imagen(prompt):
return pipe(prompt).images[0]
a = gr.Interface(fn=imagen, inputs=[gr.Textbox(label="Enter prompt for an image")],
outputs=[gr.Image(label='Generated Image')],
title='Image Generation Using Stable Diffusion',
examples=["the spirit of a tamagotchi wandering in the city of Vienna","a mecha robot in a favela"])
a.launch() |