Instructions to use huspacy/hu_vectors_web_lg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use huspacy/hu_vectors_web_lg with spaCy:
!pip install https://huggingface.co/huspacy/hu_vectors_web_lg/resolve/main/hu_vectors_web_lg-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("hu_vectors_web_lg") # Importing as module. import hu_vectors_web_lg nlp = hu_vectors_web_lg.load() - fastText
How to use huspacy/hu_vectors_web_lg with fastText:
from huggingface_hub import hf_hub_download import fasttext model = fasttext.load_model(hf_hub_download("huspacy/hu_vectors_web_lg", "model.bin")) - Notebooks
- Google Colab
- Kaggle
Added vector extensions to .gitattributes
Browse files- .gitattributes +3 -0
.gitattributes
CHANGED
|
@@ -26,3 +26,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 26 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 28 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 28 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.floret filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.vec filter=lfs diff=lfs merge=lfs -text
|