Tokenize for subword
Project description
Genz Tokenize
Cài đặt:
pip install genz-tokenize
Sử dụng cho tokenize thông thường
>>> from genz_tokenize import Tokenize
# sử dụng vocab sẵn có của thư viện
>>> tokenize = Tokenize()
>>> print(tokenize(['sinh_viên công_nghệ', 'hello'], maxlen = 5))
# [[1, 288, 433, 2, 0], [1, 20226, 2, 0, 0]]
>>> print(tokenize.decode([1, 288, 2]))
# <s> sinh_viên </s>
# Sử dụng vocab tự tạo
>>> tokenize = Tokenize.fromFile('vocab.txt','bpe.codes')
Sử dụng tokenize cho model bert của thư viện transformers
>>> from genz_tokenize import TokenizeForBert
# sử dụng vocab sẵn có của thư viện
>>> tokenize = TokenizeForBert()
>>> print(tokenize(['sinh_viên công_nghệ', 'hello'], max_length=5, padding='max_length',truncation=True))
# {'input_ids': [[1, 287, 432, 2, 0], [1, 20225, 2, 0, 0]], 'token_type_ids': [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], 'attention_mask': [[1, 1, 1, 1, 0], [1, 1, 1, 0, 0]]}
# Sử dụng vocab tự tạo
>>> tokenize = TokenizeForBert.fromFile('vocab.txt','bpe.codes')
Embedding matrix
>>> from genz_tokenize import get_embedding_matrix
>>> embedding_matrix = get_embedding_matrix()
Có thể tạo vocab cho riêng mình bằng thư viện subword-nmt (learn-joint-bpe-and-vocab)
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
genz-tokenize-1.1.0.tar.gz
(61.8 MB
view details)
Built Distribution
File details
Details for the file genz-tokenize-1.1.0.tar.gz
.
File metadata
- Download URL: genz-tokenize-1.1.0.tar.gz
- Upload date:
- Size: 61.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1fd8d073b56d4acc976caecbc139104ad99a8abe5499d53f1432c30df332697 |
|
MD5 | 4430ba4dfdca5f33337af60bebebad0e |
|
BLAKE2b-256 | 99704154a60d79650465c9eed1b9042524954d48757413740a46903a71d5879f |
File details
Details for the file genz_tokenize-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: genz_tokenize-1.1.0-py3-none-any.whl
- Upload date:
- Size: 63.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b893e348f0a9eb86b2e84a87362ea1355c8a7199c4e39ad1ae274e928367d3a |
|
MD5 | 387b901b3245c82f983b4c7a18509873 |
|
BLAKE2b-256 | 5b10232c59c36b3fcf76d9c1bf69c343e2d20b68c51ff30259e1945b2ba2632b |