GiNZA is an open-source Japanese NLP library based on Universal Dependencies, providing tokenization, part-of-speech tagging, dependency parsing, named entity recognition, and sentence segmentation. The current version (5.2.0) requires Python >=3.8 and is released via GitHub (megagonlabs/ginza) and PyPI. It uses the spaCy pipeline internally and offers a robust model for Japanese text processing.
pip install ginzaNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Load the GiNZA model via spaCy and process Japanese text.
Replace `import ginza` with `import spacy; nlp = spacy.load('ja_ginza')`.Run `python -m spacy download ja_ginza` after installing the ginza package.
Use `nlp.to_disk('path')` and `nlp.from_disk('path')` to save/load models.