Skip to main content

String processing library for advanced NLP and keyword extraction

Project description

Essence

pypiv pyv Licence Downloads

Essence is string processing library designed for advanced Natural Language Processing (NLP) and Generative AI tasks. Built in Rust, bridged to Python.

Features

  • Error Correction: Enhances text accuracy by correcting spelling and grammatical errors
  • Noise Removal: Eliminates irrelevant information, aiding in cost-effective prompt handling especially when using APIs with usage-based pricing
  • Keyword Extraction: Extracts key terms from prompts facilitating fast searches, database lookups, and other system interactions
  • Prompt Compression: Reduces operational costs in AI-driven platforms by minimizing the text data processed
  • High Performance: Leverages Rust's memory safety and speed for string processing

Installation

Before installing Essence, ensure that you have Rust and Python installed on your system.

  1. Install Rust:

  2. Install Python:

  3. Install Essence via pip:

pip install essence-nlp
# or
pip3 install essence-nlp

Usage

from essence_nlp import processing

sentence = 'Hello i am sogtware engineer, and i designing smart mashine learning system.'

# Example 1: Correcting text
corrected_sentence = processing.corrected(sentence)
print(corrected_sentence)  # Output: 'hello i am software engineer and i'm designing smart machine learning system'

# Example 2: Cleaning text
clean_sentence = processing.cleaned(sentence)
print(clean_sentence)  # Output: 'hello software engineer im designing smart machine learning system'

# Example 3: Extracting keywords
keywords = processing.keywords(sentence)
print(keywords)  # Output: 'im designing smart machine learning system: 36\nsoftware engineer: 4\nhello: 1'

Benchmarks

Coming soon...

Credits

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

essence-nlp-2.0.0.tar.gz (8.7 MB view hashes)

Uploaded Source

Built Distribution

essence_nlp-2.0.0-cp311-cp311-macosx_13_0_arm64.whl (10.5 MB view hashes)

Uploaded CPython 3.11 macOS 13.0+ ARM64

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