Manjushri commited on
Commit
b48eab5
·
1 Parent(s): 3714387

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
7
 
8
  device = "cuda" if torch.cuda.is_available() else "cpu"
9
  access_token = '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'
10
- pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-0.9", torch_dtype=torch.float16, use_safetensors=True, variant="fp16", token=access_token)
11
  pipe = pipe.to(device)
12
  pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True)
13
 
 
7
 
8
  device = "cuda" if torch.cuda.is_available() else "cpu"
9
  access_token = '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'
10
+ pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-0.9", token=access_token)
11
  pipe = pipe.to(device)
12
  pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True)
13