Instructions to use kernela/fasttext-ru-vectors-dim-100 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastText
How to use kernela/fasttext-ru-vectors-dim-100 with fastText:
from huggingface_hub import hf_hub_download import fasttext model = fasttext.load_model(hf_hub_download("kernela/fasttext-ru-vectors-dim-100", "model.bin")) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
This model is result of:
|
| 2 |
-
```
|
| 3 |
model_path = hf_hub_download(repo_id="facebook/fasttext-ru-vectors", filename="model.bin")
|
| 4 |
|
| 5 |
model = fasttext.load_model(model_path)
|
|
|
|
| 1 |
This model is result of:
|
| 2 |
+
```python
|
| 3 |
model_path = hf_hub_download(repo_id="facebook/fasttext-ru-vectors", filename="model.bin")
|
| 4 |
|
| 5 |
model = fasttext.load_model(model_path)
|