Installation
You can either install the model through pip
:
Installation#
# Install the latest model
$ pip install hu_core_news_lg@https://huggingface.co/huspacy/hu_core_news_lg/resolve/main/hu_core_news_lg-any-py3-none-any.whl
# Install a model with a specific version such as the latest one (3.8.0)
$ pip install hu_core_news_lg@https://huggingface.co/huspacy/hu_core_news_lg/resolve/v3.8.0/hu_core_news_lg-any-py3-none-any.whl
or by using huspacy
's built-in facilities:
import huspacy
# Install the latest model
huspacy.download("hu_core_news_lg")
# Install a model with a specific version such as the latest one (3.8.0)
huspacy.download("hu_core_news_lg", "3.8.0")
Available model versions: 3.2.1
, 3.2.2
, 3.3.0
, 3.3.1
, 3.4.0
, 3.4.1
, 3.4.2
, 3.4.3
, 3.4.4
, 3.5.0
, 3.5.1
, 3.5.2
, 3.6.0
, 3.6.1
, 3.7.0
, 3.8.0