vi_spacy
is a Vietnamese language models pretrained word vectors, tok2vec, tagger, parser on 18 GB of Vietnamese news, 270K unique vectors (300 dimensions) for Spacy.io. The gitlab is here.
Sometimes, You will get the error when trying to install the vi_spacy via pip:
pip install https://gitlab.com/trungtv/vi_spacy/-/raw/master/vi_core_news_lg/dist/vi_core_news_lg-0.0.1.tar.gz
And the error:
ERROR: pip’s dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
en-core-web-sm 2.3.1 requires spacy<2.4.0,>=2.3.0, but you have spacy 3.0.7 which is incompatible.
Because you have the spacy>3.0.x and the en-core-web-sm 2.3.1 is incompatible. Just run the pip above to fix:
python -m spacy download en_core_web_sm
Nam Le
lequocnam
0 responds