Word sense disambiguation library
Project description
This repository contains scripts and expriments related to the Sense frequencies project, and an rlwsd python package for WSD (word sense disambiguation) for Russian language.
rlwsd package
This package can perform WSD for Russian nouns described in the of Active Dictionary of Russian (currently, only the first volume is published with letters “А” - “Г”).
Installation
The package currently works only on CPython 3.4+. Install with pip:
pip3 install rlwsd
The package requires models that are not hosted on PyPI and most be downloaded separately (about 2.3 Gb total):
python3 -m rlwsd.download
Models are re-downloaded even if they are already present. In case of problems (download does not finish, etc.) you can download models manually from rlwsd.download.MODELS_URL and extract them into the models folder inside rlwsd (package) folder.
Usage
Most functionality is provided by the model class. Model for each word must be loaded separately:
>>> import rlwsd >>> model = rlwsd.SphericalModel.load('альбом') >>> model.senses {'1': {'meaning': 'Вещь в виде большой тетради ...', 'name': 'альбом 1'}, '2': {'meaning': 'Книга тематически связанных изобразительных материалов ...', 'name': 'альбом 2.1'}, '3': {'meaning': 'Собрание музыкальных произведений ...', 'name': 'альбом 2.2'}} >>> model.disambiguate('она задумчиво листала', 'альбом', 'с фотографиями') '2'
You can also get a list of all words with models:
>>> import rlwsd >>> rlwsd.list_words() ['абрикос', 'абсурд', 'авангард', ... 'гусь', 'гуща']
A large word2vec model is used internally. By default it is loaded once, one the first call to .disambiguate method, which takes noticeable time. There is an option to load word2vec model in a separate process by running w2v-server command, which starts a server, and exporting W2VSRV environment variable with any non-empty value:
# in the first terminal window $ w2v-server running... # in the second terminal window $ export W2VSRV=yes $ python
In this way you can leave the w2v-server running and save time on word2vec model reloads.
License
License is MIT
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 Distribution
Built Distribution
File details
Details for the file rlwsd-0.1.2.tar.gz
.
File metadata
- Download URL: rlwsd-0.1.2.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76eac557e678aa61acf43de84d88f0223c297ae6dbffedeb8c624fe4f121aa32 |
|
MD5 | 540d48dd07cd2a4fab7404b6c5dd8449 |
|
BLAKE2b-256 | 22d9c91f751c475507d8cbb0061ad405af972cfe6205e03964693b1718e2e427 |
File details
Details for the file rlwsd-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: rlwsd-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e7687f14b75874da5b7c5241ef80e55aee1c1e9d68c78bcd362c61bcbfec8fb |
|
MD5 | f0aa02f5cd29b576f81c6ea3e0c1e41f |
|
BLAKE2b-256 | cee1c328e11f3849ab66141d5758451ad8ca00db080fa055cbb597e02d6d1797 |