Aguskusmara commited on
Commit
59f5c3d
·
verified ·
1 Parent(s): 5c368df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -5,7 +5,8 @@ from torchvision import transforms as T
5
  from huggingface_hub import hf_hub_download
6
  from tokenizer import Tokenizer
7
 
8
- TOKEN = os.getenv('hf_read_token')
 
9
  repo_id = "Nischay103/captcha_recognition"
10
  model_file = 'captcha_model.pt'
11
  model_path = hf_hub_download(repo_id=repo_id, filename=model_file, token=TOKEN)
 
5
  from huggingface_hub import hf_hub_download
6
  from tokenizer import Tokenizer
7
 
8
+ TOKEN = 'abay'
9
+ # os.getenv('hf_read_token')
10
  repo_id = "Nischay103/captcha_recognition"
11
  model_file = 'captcha_model.pt'
12
  model_path = hf_hub_download(repo_id=repo_id, filename=model_file, token=TOKEN)