Quickstart#
HuSpaCy is fully compatible with spaCy's API, newcomers can easily get started with spaCy 101 guide.
Although HuSpacy models can be loaded with spacy.load(...)
, the tool provides convenience methods to easily access downloaded models.
To process texts, you can simply call the loaded model (i.e. the nlp
callable object)
As HuSpaCy is built on spaCy, the returned doc
document contains all the annotations given by the pipeline components.