Utility for part-of-speech tagging of Bashkir text
Project description
This module contains a utility for part-of-speech tagging of Bashkir 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 bashkirtagger
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 bashkirtagger import Tagger >>> t = Tagger() >>> sentence = "Бер кеше йәшәй." >>> tagged_sentence = t.predict_pos(sentence) >>> print(tagged_sentence) [('бер', 'NUM'), ('кеше', 'S'), ('йәшәй', 'V')]
Tagging a text of several sentences
>>> from bashkirtagger import Tagger >>> t = Tagger() >>> text = "Бер кеше йәшәй. Кем белә." >>> tagged_text = t.text_prc(text) >>> print(tagged_text) [[('бер', 'NUM'), ('кеше', 'S'), ('йәшәй', 'V')], [("кем", "SPRO"), ("белә", "V")]]
Data
The model trained on collected from the web Bashkir text corpus which was marked up by Bashmorph.
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.0015 - acc: 0.9996 - val_loss: 0.0975 - val_acc: 0.9847.
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 bashkirtagger-0.7.1.tar.gz
.
File metadata
- Download URL: bashkirtagger-0.7.1.tar.gz
- Upload date:
- Size: 447.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16d7f222fd9f0a0e1b36dfc1a33dd142689f480223ab8d2e9fa431c7deb051b4 |
|
MD5 | 64d5c89547d4571e4300bacbd2370486 |
|
BLAKE2b-256 | 58884307a52a0557db3b9de456a5eaca7bbc645a0ef8a8b193d73a24a06b8771 |