File size: 409 Bytes
c95e188
 
 
 
 
 
517045d
c95e188
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from diffusers import StableDiffusionPipeline
import torch
import gradio as gr
def run(prompt):
  model_id = "runwayml/stable-diffusion-v1-5"
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
  # pipe = pipe.to("cuda")
  image = pipe(prompt).images[0]  
  return image

gr.Interface(
    run,
    title = 'Text-To-Image',
    inputs="text",
    outputs = "image"
).launch()