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.5.0.tar.gz
(30.7 kB
view details)
File details
Details for the file nlpx-1.5.0.tar.gz
.
File metadata
- Download URL: nlpx-1.5.0.tar.gz
- Upload date:
- Size: 30.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 | 44bfee1e9708120d7dff41bcb8e93fc7e50650dec4d7d4db7286c43a4f6a50f7 |
|
MD5 | f7f86bda97531c710328fd1cb9b93abb |
|
BLAKE2b-256 | 7812b25f61be96989b2774a177bc9e47a277ec5b1d753045ce2e24da57416288 |