HuSpaCy: industrial strength Hungarian natural language processing
Project description
HuSpaCy: Industrial-strength Hungarian NLP
HuSpaCy is a spaCy model and library providing industrial-strength Hungarian language processing facilities. A live demo is available here.
This repository contain material to build the models for HuSpaCy.
Installation
To get started using the latest Hungarian model, you can fetch the model by installing huspacy
from PyPI:
pip install huspacy
This should be followed by the model download:
import huspacy
huspacy.download()
Alternatively, one can install the latest models directly from Hugging Face Hub:
pip install https://huggingface.co/huspacy/hu_core_news_lg/resolve/main/hu_core_news_lg-any-py3-none-any.whl
To speed up inference, you might want to run the models on GPU for which you need to add CUDA support for spacy as described in here.
Usage
# Load the model through huspacy
import huspacy
nlp = huspacy.load()
# Load the mode using spacy.load().
import spacy
nlp = spacy.load("hu_core_news_lg")
# Or load the model directly as a module.
import hu_core_news_lg
nlp = hu_core_news_lg.load()
# Either way you get the same model and can start processing your texts.
doc = nlp('Csiribiri csiribiri zabszalma - négy csillag közt alszom ma.')
For a detailed guide on usage, check spaCy's documentation.
Available Models
Currently, we only support a single large model which has a good balance between accuracy and speed. You can play around with the tool capabilities in this interactive demo.
hu_core_news_lg
provides tokenization, sentence splitting, part-of-speech tagging (UD labels w/ detailed morphosyntactic features), lemmatization, dependency parsing and named entity recognition and ships with pretrained word vectors.
Models' changes are recorded in the changelog.
Development
Installing requirements
poetry install
will install all the dependencies- For better performance you might need to reinstall spacy with GPU support, e.g.
poetry add spacy[cuda92]
will add support for CUDA 9.2
Repository structure
├── .github -- Github configuration files
├── data -- Data files
│ ├── external -- External models required to train models (e.g. word vectors)
│ ├── processed -- Processed data ready to feed spacy
│ └── raw -- Raw data, mostly corpora as they are obtained from the web
├── hu_core_news_lg -- Spacy 3.x project files for building a model for news texts
│ ├── configs -- Spacy pipeline configuration files
│ ├── project.lock -- Auto-generated project script
│ ├── project.yml -- Spacy3 Project file describing steps needed to build the model
│ └── README.md -- Instructions on building a model from scratch
├── huspacy -- subproject for the PyPI distributable package
├── tools -- Source package for tools
│ └── cli -- Command line scripts (Python)
├── models -- Trained models and their metadata
├── resources -- Resource files
├── scripts -- Bash scripts
├── tests -- Test files
├── CHANGELOG.md -- Keeps the changelog
├── LICENSE -- License file
├── poetry.lock -- Locked poetry dependencies files
├── poetry.toml -- Poetry configurations
├── pyproject.toml -- Python project configutation, including dependencies managed with Poetry
└── README.md -- This file
Citing
If you use the models or this library in your research please cite this paper.
Additionally, please indicate the version of the model you used so that your research can be reproduced.
License
This library is released under the Apache 2.0 License. See the LICENSE
file for more details.
The trained models have their own permissive license (CC BY-SA 4.0) as described on the models page.
Contact
For feature request issues and bugs please use the GitHub Issue Tracker. Otherwise, please use the Discussion Forums.
Acknowledgments
The project was supported by the Ministry of Innovation and Technology NRDI Office within the framework of the Artificial Intelligence National Laboratory Program.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file huspacy-0.4.0a5-py3-none-any.whl
.
File metadata
- Download URL: huspacy-0.4.0a5-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.0 CPython/3.7.7 Linux/5.11.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b905dd779f0f7d6385e6fde21ed54c7c47bcb401c9bface6d8ebbe8ef48aae6 |
|
MD5 | 0e15b40552979040d9d8d07620eeeb06 |
|
BLAKE2b-256 | 96b3fd12a2c87a5d6aa25bb64b3aba5331283b86a00657fea2581e04a453b503 |