Shuaf98 commited on
Commit
4dcdccc
1 Parent(s): 71d6b66
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ model_id = "CompVis/stable-diffusion-v1-4"
11
  device = "cuda"
12
 
13
  #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.
14
- pipe = StableDiffusionPipeline.from_pretrained(model_id, use_auth_token=token, revision="fp16", torch_dtype=torch.float16)
15
  pipe = pipe.to(device)
16
  #When running locally, you won`t have access to this, so you can remove this part
17
  # word_list_dataset = load_dataset("stabilityai/word-list", data_files="list.txt", use_auth_token=True)
 
11
  device = "cuda"
12
 
13
  #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.
14
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, use_auth_token=TOKEN, revision="fp16", torch_dtype=torch.float16)
15
  pipe = pipe.to(device)
16
  #When running locally, you won`t have access to this, so you can remove this part
17
  # word_list_dataset = load_dataset("stabilityai/word-list", data_files="list.txt", use_auth_token=True)