ysmao commited on
Commit
237c7d9
1 Parent(s): 103dcbe

update rumway stable diffusion to realistic vision model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ controlnet = ControlNetModel.from_pretrained(
25
  torch_dtype=torch.float16,
26
  )
27
  pipe = StableDiffusionControlNetPipeline.from_pretrained(
28
- "runwayml/stable-diffusion-v1-5", controlnet=controlnet, torch_dtype=torch.float16
29
  ).to("cuda")
30
  pipe.scheduler = UniPCMultistepScheduler.from_config(pipe.scheduler.config)
31
 
 
25
  torch_dtype=torch.float16,
26
  )
27
  pipe = StableDiffusionControlNetPipeline.from_pretrained(
28
+ "stablediffusionapi/realistic-vision-v51", controlnet=controlnet, torch_dtype=torch.float16
29
  ).to("cuda")
30
  pipe.scheduler = UniPCMultistepScheduler.from_config(pipe.scheduler.config)
31