Skip to main content

A Light-weight Python NLP Library

Project description

Convex

A Light-weight and Fast Python NLP Library

The plan is to provide light-weight neural models for various downstream NLP tasks such as POS Taggging, Named Entity Recognition, Sentiment Analysis, etc. However, right now POS Tagging is the only task that is supported.

Installation

pip

pip install convex

From Source

git clone https://github.com/nilansaha/convex.git
cd convex
pip install -e .

Usage

The model only needs to be downloaded the first time the tagger is used or after the package is updated

import convex
convex.download() # Download all the necessary models
tagger = convex.PosTagger() # Initialize the Pos Tagging Pipeline
tagger("Let's see how this new tagger works.") # Tag a sentence

Output -

[('Let', 'VERB'), ("'s", 'PRON'), ('see', 'VERB'), ('how', 'ADV'), ('well', 'ADV'), ('this', 'DET'), ('new', 'ADJ'), ('tagger', 'NOUN'), ('works', 'NOUN')]

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

convex-0.0.2-py3-none-any.whl (6.6 kB view hashes)

Uploaded Python 3

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