Skip to main content

A fast and dynamic python package for converting paragraphs into sentences with customizable thresholds for adaptive sentence segmentation.

Project description

sentok

Sentok is a fast and dynamic Python package for converting paragraphs into sentences. It offers customizable thresholds for adaptive sentence segmentation and is built on top of pandas for high performance and easy adjustment. The package allows you to easily convert paragraphs into a list of sentences or a DataFrame with probability columns.

Features

  • High Performance: Efficient handling of large texts.
  • Dynamic Configuration: Customizable parameters and regular expressions.
  • Simple Logic: Easy to understand and extend.

Installation

Via pip

To install the latest version directly from the GitHub repository, use:

pip install sentok

Or

pip install git+https://github.com/kothiyarajesh/sentok.git

Building from Source

  1. Clone the repository:

    git clone https://github.com/kothiyarajesh/sentok.git
    
  2. Navigate to the project directory:

    cd sentok
    
  3. Install the package:

    python setup.py install
    

Usage

Python Script

Here’s a simple example of how to use the sentok library in a Python script:

import sentok

# Display current weights used by the tokenizer
# Uncomment the following line to view the current weights in use:
# print(sentok.get_weights())

# Adjust weights only if necessary for specific use cases
# For example, updating the set of start characters:
# sentok.set_weights({'start_chars': list('ABCDEFGHIJKLMNOPQRSTUVWXYZ')})

# Sample text for sentence tokenization
text = """Natural language processing (NLP) is a captivating domain that merges computer science, artificial intelligence, and linguistics. It empowers computers to comprehend, interpret, and produce human language in a manner that is both useful and insightful. NLP finds application in various fields, such as text analysis, speech recognition, and machine translation. For example, advanced language models like GPT-3 have showcased exceptional skills in generating text that resembles human writing and in answering queries. As technology progresses, NLP continues to advance, enhancing its precision and expanding its scope of applications."""

# Tokenize the sample text into sentences using the default threshold of 0.65
# Adjust the threshold as needed based on your text's quality.
sentences = sentok.sent_tokenize(text, 0.64)

# Print each extracted sentence
for sentence in sentences:
    print('->', sentence)

# Print the total number of sentences extracted
print('Total Sentences:', len(sentences))

# Obtain a DataFrame with tokenization features for further analysis or model training:
df = sentok.get_sent_tokenize_df(text)
print(df)

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sentok-0.1.2.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

sentok-0.1.2-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file sentok-0.1.2.tar.gz.

File metadata

  • Download URL: sentok-0.1.2.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.4

File hashes

Hashes for sentok-0.1.2.tar.gz
Algorithm Hash digest
SHA256 4e1a2e3e2a645e6c8194cd86387bc550c8f5980cf067f8a15dea9ba2ae95af46
MD5 6c9849ef98e7d33bcd96d0dcae86d412
BLAKE2b-256 e4d0f9c7853ae615d8c7377a6c63f273ff896128b1328e8ff926a82cece16fec

See more details on using hashes here.

File details

Details for the file sentok-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: sentok-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.4

File hashes

Hashes for sentok-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8b279f5be870199d89e3488c7487606ff2ef752c21d217308fc254c9a36c5e3c
MD5 945f3dbe9300fec150fa59bb2c803069
BLAKE2b-256 bb8d218c4e1f2879ad17e874bba42b77c3c9f02076052c273efe2b61201e3d72

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page