dkagramanyan
commited on
Update README.md
Browse files
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(
|
|
|
|
|
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 |
```
|