Spaces:
Runtime error
Runtime error
import gradio as gr | |
from diffusers import DiffusionPipeline | |
pipeline = DiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4") | |
iface = gr.Interface( | |
fn=predict, | |
inputs='text', | |
outputs='text', | |
examples=[["Hello! My name is Omar"]] | |
) | |
iface.launch() |