
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
nlpannotator
Advanced tools
This project just had its first version release and is still under development.
The nlpannotator package serves as modular toolchain to combine different natural language processing (nlp) tools to annotate texts (sentencizing, tokenization, part-of-speech (POS) and lemma).
Tools that can be combined are:
Install the project and its dependencies from PyPi:
pip install nlpannotator
The language models need to be installed separately. You can make use of the convenience script here which installs all language models for all languages that have been implemented for spaCy and stanza.
The package also makes use of Treetagger. You can use the treetagger_install command in your shell to install the dependency, or call it within Python
import nlpannotator.install_treetagger
nlpannotator.install_treetagger.install_tagger()
All input options are provided in an input dictionary. Two pre-set toolchains can be used: fast using spaCy for all annotations; accurate using SoMaJo for sentencizing and tokenization, and stanza for POS and lemma; and manual where any combination of spaCy, stanza, SoMaJo, Flair, Treetagger can be used, given the tool supports the selected annotation and language.
| Keyword | Default setting | Possible options | Description |
|---|---|---|---|
input | example_en.txt | Name of the text file containing the raw text for annotation | |
corpus_name | test | Name of the corpus that is generated | |
language | en | see below | Language of the text to annotate |
processing_option | manual | fast, accurate, manual | Select the tool pipeline - fast and accurate provide you with good default options for English |
processing_type | sentencize, tokenize, pos, lemma | see below | |
tool | spacy, spacy, spacy, spacy | see below | Tool to use for each of the four annotation types |
output_format | xml | xml, vrt | Format of the generated annotated text file |
encoding | yes | yes, no | Directly encode the annotated text file into cwb |
The available annotation tools are listed below, and can be set using the following keywords:
spacystanzasomajoflairtreetaggerThe available processors depend on the selected tool. This is a summary of the possible options:
| Tool | Available processors |
|---|---|
spacy | sentencize, tokenize, pos, lemma |
stanza | sentencize, tokenize, pos, lemma |
somajo | sentencize, tokenize |
flair | pos |
treetagger | tokenize, pos, lemma |
Some of the processors depend on each other. For example, pos and lemma are only possible after sentencize and tokenize. tokenize depends on sentencize. |
The availabe languages depend on the selected tool. So far, the following languages have been added to the pipeline (there may be additional language models available for the respective tool, but they have not been added to this package - for stanza, the pipeline will still run and load the model on demand).
| Tool | Available languages |
|---|---|
spacy | en, de, fr, it, ja, pt, ru, es |
stanza | load on demand from available stanza models |
somajo | en, de |
flair | en, de |
treetagger | en, de, fr, es (both tokenization and pos/lemma) |
treetagger | bg, nl, et, fi, gl, it, kr, la, mn, pl, ru, sk, sw (only pos/lemma) |
nlpannotator expects a raw text file as an input, together with an input dictionary that specifies the selected options. The input dictionary is also printed out when a run is initiated, so that the selected options are stored and can be looked up at a later time.
Both of these can be provided through a Jupyter interface as in the Demo Notebook.
The output that is generated is either of vrt format (for cwb) or xml. Both output formats can directly be encoded into cwb.
Take a look at the DemoNotebook or run it on Binder.
Please ask questions / submit bug reports using our issue tracker.
Contributions are wellcome. Please fork the nlpannotator repo and open a Pull Request for any changes to the code. These will be reviewed and merged by our team. Make sure that your contributions are clean, properly formatted and for any new modules follow the general design principle.
Take a look at the source code documentation.
The additions must have at least have 80% test coverage.
A summary of the releases and release notes are available here.
FAQs
Annotator combining different NLP pipelines
We found that nlpannotator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.