Installation
You can either install the model through pip
:
Installation#
# Install the latest model
$ pip install hu_core_news_md@https://huggingface.co/huspacy/hu_core_news_md/resolve/main/hu_core_news_md-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_md@https://huggingface.co/huspacy/hu_core_news_md/resolve/v3.8.0/hu_core_news_md-any-py3-none-any.whl
or by using huspacy
's built-in facilities:
import huspacy
# Install the latest model
huspacy.download("hu_core_news_md")
# Install a model with a specific version such as the latest one (3.8.0)
huspacy.download("hu_core_news_md", "3.8.0")
Available model versions: 3.4.1
, 3.4.2
, 3.5.0
, 3.5.1
, 3.5.2
, 3.6.0
, 3.6.1
, 3.7.0
, 3.8.0