A tool set for NLP.
Project description
Usage Sample ''''''''''''
.. code:: python
from nlpx.text_token import Tokenizer
if __name__ == '__main__':
corpus = ...
tokenizer = Tokenizer(corpus)
sent = 'I love you'
tokens = tokenizer.encode(sent, max_length=6, pad_begin_end=True)
# [101, 66, 88, 99, 102, 0]
sent = tokenizer.decode(sent)
# ['<bos>', 'I', 'love', 'you', '<eos>', '<pad>']
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
nlpx-1.3.4.tar.gz
(16.7 kB
view details)
File details
Details for the file nlpx-1.3.4.tar.gz
.
File metadata
- Download URL: nlpx-1.3.4.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0f0c9c37e822d8918e9880ba2282d9f512950bd9012736c1fa2e4a80ffe1931 |
|
MD5 | c1fd34523f013a59138b37fd1263f831 |
|
BLAKE2b-256 | e1695bd6b8d1e9fde6f713965c7aed6570fc0376621c10b3d868ad345b3052e9 |