Manjushri commited on
Commit
38b12a9
1 Parent(s): 87028d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ from diffusers import DiffusionPipeline, StableDiffusionLatentUpscalePipeline
7
 
8
  device = "cuda" if torch.cuda.is_available() else "cpu"
9
 
10
- pipe = DiffusionPipeline.from_pretrained("circulus/canvers-photoreal-v3.3", torch_dtype=torch.float16, safety_checker=None)
11
  pipe = pipe.to(device)
12
  pipe.enable_xformers_memory_efficient_attention()
13
  upscaler = StableDiffusionLatentUpscalePipeline.from_pretrained("stabilityai/sd-x2-latent-upscaler", torch_dtype=torch.float16, safety_checker=None)
 
7
 
8
  device = "cuda" if torch.cuda.is_available() else "cpu"
9
 
10
+ pipe = DiffusionPipeline.from_pretrained("circulus/canvers-realistic-v3.6", torch_dtype=torch.float16, safety_checker=None)
11
  pipe = pipe.to(device)
12
  pipe.enable_xformers_memory_efficient_attention()
13
  upscaler = StableDiffusionLatentUpscalePipeline.from_pretrained("stabilityai/sd-x2-latent-upscaler", torch_dtype=torch.float16, safety_checker=None)