isaiah08 commited on
Commit
580fd94
1 Parent(s): 855e773

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ model_id = "CompVis/stable-diffusion-v1-4"
17
  device = "cuda"
18
 
19
  #If you are running this code locally, you need to either do a 'huggingface-cli login` or paste your User Access Token from here https://huggingface.co/settings/tokens into the use_auth_token field below.
20
- pipe = StableDiffusionPipeline.from_pretrained(model_id, use_auth_token=True, revision="fp16", torch_dtype=torch.float16)
21
  pipe = pipe.to(device)
22
  torch.backends.cudnn.benchmark = True
23
 
17
  device = "cuda"
18
 
19
  #If you are running this code locally, you need to either do a 'huggingface-cli login` or paste your User Access Token from here https://huggingface.co/settings/tokens into the use_auth_token field below.
20
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, use_auth_token="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", revision="fp16", torch_dtype=torch.float16)
21
  pipe = pipe.to(device)
22
  torch.backends.cudnn.benchmark = True
23