Utility for part-of-speech tagging of Udmurt text
Project description
This module contains a utility for part-of-speech tagging of Udmurt text. The tool based on LSTM neural network and takes a word order into account.
Installation
The tool could be installed with pip
pip3 install udmurttagger
Note: the model for the utility must be downloaded separately. Due to limitations on the size of the project, I could not place it on a github or PiPy. After launching the program it will download and unpack the model. No action is necessary on your part. But you will need an Internet connection and about 150 megabytes of incoming traffic.
Usage example
Tagging one sentence at a time
>>> from udmurttagger import Tagger >>> t = Tagger() >>> sentence = "Сьӧд зарезе." >>> tagged_sentence = t.predict_pos(sentence) >>> print(tagged_sentence) [('сьӧд', 'N'), ('зарезе', 'N')]
Model
This tool can be used for disambiguation of rule-based markup.
You can make your own wrap of the trained model.
Model’s evaluation: loss: 0.2281 - acc: 0.9845 - val_loss: 0.2643 - val_acc: 0.9782.
Contacts
You can contact the contriutor of the project via email:
Boris Orekhov (nevmenandr)
@ gmail
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file udmurttagger-0.5.3.tar.gz
.
File metadata
- Download URL: udmurttagger-0.5.3.tar.gz
- Upload date:
- Size: 431.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e22ff0d850a7fc2285fcd285a9bd50f2f654180d6d4ddaaa9fea771c082f712d |
|
MD5 | 85cb28450e6e508494e52729e04f0068 |
|
BLAKE2b-256 | 3d8e379682d390844bbf4eabf1fd061cd1d2533340960ca3531b16a6a656b6ba |