Pendrokar commited on
Commit
515b1f6
·
1 Parent(s): 404d045

TorchMoji folder

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ from transformers import AutoModel, AutoTokenizer
14
  model_name = "Pendrokar/TorchMoji"
15
  model = AutoModel.from_pretrained(model_name, cache_dir="~/.cache/huggingface/hub/")
16
  tokenizer = AutoTokenizer.from_pretrained(model_name)
17
- model_path = "~/.cache/huggingface/hub/pytorch_model.bin"
18
  vocab_path = './' + model_name + "/vocabulary.json"
19
 
20
  def top_elements(array, k):
 
14
  model_name = "Pendrokar/TorchMoji"
15
  model = AutoModel.from_pretrained(model_name, cache_dir="~/.cache/huggingface/hub/")
16
  tokenizer = AutoTokenizer.from_pretrained(model_name)
17
+ model_path = "~/.cache/huggingface/hub/TorchMoji/pytorch_model.bin"
18
  vocab_path = './' + model_name + "/vocabulary.json"
19
 
20
  def top_elements(array, k):