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.6.tar.gz
(32.1 kB
view details)
File details
Details for the file nlpx-1.5.6.tar.gz
.
File metadata
- Download URL: nlpx-1.5.6.tar.gz
- Upload date:
- Size: 32.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bc045aecd75e4fed7a0e5c8c2bb6405da2366a3868e9dcf78cceca096a98401 |
|
MD5 | da1dae6c6dd34163a085fa7a14813f16 |
|
BLAKE2b-256 | ddcfd420374a93a7148b8c4544f204980d96ac6ea73368b7846516f3d55e4d6b |