Dinesh1102 commited on
Commit
517045d
·
1 Parent(s): 2c61a1f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import gradio as gr
4
  def run(prompt):
5
  model_id = "runwayml/stable-diffusion-v1-5"
6
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
7
- pipe = pipe.to("cuda")
8
  image = pipe(prompt).images[0]
9
  return image
10
 
 
4
  def run(prompt):
5
  model_id = "runwayml/stable-diffusion-v1-5"
6
  pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
7
+ # pipe = pipe.to("cuda")
8
  image = pipe(prompt).images[0]
9
  return image
10