art / app.py
dejinlee's picture
Update app.py
7f7dd60
raw
history blame contribute delete
336 Bytes
import gradio as gr
from diffusers import StableDiffusionPipeline
def draw(text):
pipe = StableDiffusionPipeline.from_pretrained("IDEA-CCNL/Taiyi-Stable-Diffusion-1B-Chinese-EN-v0.1")
image = pipe(text, guidance_scale=10).images[0]
return image
iface = gr.Interface(fn=draw, inputs="text", outputs="image")
iface.launch()