Initialize spaCy to call from R.
spacy_initialize(model = "en_core_web_sm", entity = TRUE, ...)
Language package for loading spaCy. Example: en_core_web_sm
(English) and
de_core_web_sm
(German). Default is en_core_web_sm
.
logical; if FALSE
is selected, named entity recognition
is turned off in spaCy. This will speed up the parsing as it will exclude
ner
from the pipeline. For details of spaCy pipeline, see
https://spacy.io/usage/processing-pipelines. The option FALSE
is available only for spaCy version 2.0.0 or higher.
not used.
Akitaka Matsuo, Johannes B. Gruber