-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# xtok | ||
## Описание | ||
Простой графематический анализатор русского языка. Позволяет разбивать текст на токены нескольких типов: | ||
* Слова: вода, tree, Маска, ПрИвЕт, Салтыков-Щедрин | ||
* Знаки пунктуации: ,?! | ||
* Разделители: \t, \n, \s | ||
* Числа: 123, 5, 0213 | ||
* Цифробуквенные комплексы: АН512, doom4 | ||
* Иероглифы: ツ, 한자 | ||
* ASCII-симолы: # | ||
Для каждого из типов токенов определяется собственная графематическая информаця, например регистр для слов, тип пунктуации и разделителя и т.п. | ||
|
||
## Сборка | ||
Система сборки взята из открытого проекта Яндекса [catboost](https://github.com/catboost/catboost). Она позволяет собирать статически линкуемые библиотеки и бинарники, | ||
а также делать простые биндинги к python. Чтобы собрать бинарную утилиту: | ||
``` | ||
1. ./ya make -r | ||
``` | ||
Чтобы собрать и установить wheel для python: | ||
``` | ||
1. cd xtok/python-package && python mk_wheel.py | ||
2. sudo pip install xtok-0.1-версия_платформы.whl | ||
``` | ||
## Использование | ||
### Бинарник | ||
``` | ||
1. cd xtok/tools && ./xtok --json --pretty | ||
Привет! | ||
{ | ||
"tokens": | ||
[ | ||
{ | ||
"data":"Привет", | ||
"token_type":"WORD", | ||
"info": | ||
[ | ||
"CYRILLIC", | ||
"CAP_START" | ||
] | ||
}, | ||
{ | ||
"data":"!", | ||
"token_type":"PUNCT", | ||
"info": | ||
[ | ||
"EXCLAMATION_MARK" | ||
] | ||
} | ||
] | ||
} | ||
``` | ||
# python | ||
```python | ||
>>> from xtok import tokenize | ||
>>> tokenize("Привет!") | ||
[{'data': 'Привет', 'type': b'WORD', 'info': [b'CYRILLIC', b'CAP_START']}, {'data': '!', 'type': b'PUNCT', 'info': [b'EXCLAMATION_MARK']}] | ||
``` |