m7mdal7aj commited on
Commit
19fb14c
1 Parent(s): ddc3bcb

Update my_model/config/LLAMA2_config.py

Browse files
Files changed (1) hide show
  1. my_model/config/LLAMA2_config.py +1 -1
my_model/config/LLAMA2_config.py CHANGED
@@ -10,6 +10,6 @@ MODEL_PATH = None
10
  TRUST_REMOTE = False
11
  USE_FAST = True
12
  ADD_EOS_TOKEN = True
13
- # ACCESS_TOKEN = "xx" # My HF Read-only Token, to be added here if needed
14
  huggingface_token = os.getenv('HUGGINGFACE_TOKEN') # for use as a secret on hf space
15
  DEVICE = 'cuda' if torch.cuda.is_available() else 'cpu'
 
10
  TRUST_REMOTE = False
11
  USE_FAST = True
12
  ADD_EOS_TOKEN = True
13
+ # ACCESS_TOKEN = "xx" # HF Read-only Token, to be added here if this code is run outside HF.
14
  huggingface_token = os.getenv('HUGGINGFACE_TOKEN') # for use as a secret on hf space
15
  DEVICE = 'cuda' if torch.cuda.is_available() else 'cpu'