Initialize spaCy to call from R.

spacy_initialize(model = "en_core_web_sm", entity = TRUE, ...)

Arguments

model

Language package for loading spaCy. Example: en_core_web_sm (English) and de_core_web_sm (German). Default is en_core_web_sm.

entity

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.

Author

Akitaka Matsuo, Johannes B. Gruber