dkagramanyan commited on
Commit
89f6039
1 Parent(s): 6c4eb4e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -41,7 +41,9 @@ pip install fasttext-wheel
41
  import fasttext
42
  from huggingface_hub import hf_hub_download
43
 
44
- model_path = hf_hub_download(repo_id="armvectores/wikipedia_arlis_tokens_fasttextskipgram_300_5", filename="model.bin")
 
 
45
  model = fasttext.load_model(model_path)
46
 
47
  ```
 
41
  import fasttext
42
  from huggingface_hub import hf_hub_download
43
 
44
+ model_path = hf_hub_download(local_dir=".",
45
+ repo_id="armvectores/wikipedia_arlis_tokens_fasttextskipgram_300_5",
46
+ filename="model.bin")
47
  model = fasttext.load_model(model_path)
48
 
49
  ```