Skip to main content

No project description provided

Project description

NLP Primitives

Tests

nlp_primitives is a Python library with Natural Language Processing Primitives, intended for use with Featuretools.

nlp_primitives allows you to make use of text data in your machine learning pipeline in the same pipeline as the rest of your data.

Install

There are two options for installing nlp_primitives. Both of the options will also install Featuretools if it is not already installed.

The first option is to install a version of nlp_primitives that does not include Tensorflow. With this option, primitives that depend on Tensorflow cannot be used. Currently, the only primitive that can not be used with this install option is UniversalSentenceEncoder.

nlp_primitives without Tensorflow can be installed with pip:

pip install nlp_primitives

or from the conda-forge channel on conda:

conda install -c conda-forge nlp-primitives

The second option is to install the complete version of nlp_primitives, which will also install Tensorflow and allow use of all primitives.

To install the complete version of nlp_primitives with pip:

pip install "nlp_primitives[complete]"

or from the conda-forge channel on conda:

conda install -c conda-forge nlp-primitives-complete

Demos

Calculating Features

With nlp_primitives primtives in featuretools, this is how to calculate the same feature.

from featuretools.nlp_primitives import PolarityScore

data = ["hello, this is a new featuretools library",
        "this will add new natural language primitives",
        "we hope you like it!"]

pol = PolarityScore()
pol(data)
0    0.365
1    0.385
2    1.000
dtype: float64

Combining Primitives

In featuretools, this is how to combine nlp_primitives primitives with built-in or other installed primitives.

import featuretools as ft
from featuretools.nlp_primitives import TitleWordCount
from featuretools.primitives import Mean

entityset = ft.demo.load_retail()
feature_matrix, features = ft.dfs(entityset=entityset, target_dataframe_name='products', agg_primitives=[Mean], trans_primitives=[TitleWordCount])

feature_matrix.head(5)
           MEAN(order_products.quantity)  MEAN(order_products.unit_price)  MEAN(order_products.total)  TITLE_WORD_COUNT(description)
product_id
10002                         16.795918                          1.402500                   23.556276                           3.0
10080                         13.857143                          0.679643                    8.989357                           3.0
10120                          6.620690                          0.346500                    2.294069                           2.0
10123C                         1.666667                          1.072500                    1.787500                           3.0
10124A                           3.2000                            0.6930                      2.2176                           5.0

Development

To install from source, clone this repo and run

make installdeps-test

This will install all pip dependencies.

Feature Labs

Featuretools

NLP Primitives is an open source project created by Feature Labs. To see the other open source projects we're working on visit Feature Labs Open Source. If building impactful data science pipelines is important to you or your business, please get in touch.

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

nlp_primitives-2.1.0.tar.gz (17.8 MB view details)

Uploaded Source

Built Distribution

nlp_primitives-2.1.0-py3-none-any.whl (18.0 MB view details)

Uploaded Python 3

File details

Details for the file nlp_primitives-2.1.0.tar.gz.

File metadata

  • Download URL: nlp_primitives-2.1.0.tar.gz
  • Upload date:
  • Size: 17.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for nlp_primitives-2.1.0.tar.gz
Algorithm Hash digest
SHA256 96b0857efced42f8111d7a5ef9a72062bd59026c0e5450c51ff6e09b2aa8995d
MD5 7e31e71aa1dd7d6edb642df49148000d
BLAKE2b-256 16bd18dd28daf5dd339d67e7ca76e52120b3dd3331e46aff95efcdec85eb052f

See more details on using hashes here.

File details

Details for the file nlp_primitives-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: nlp_primitives-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 18.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for nlp_primitives-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fcada01a2614614ed93d670d240382a2187a4fdbc28a2bc81d7b84d0288304be
MD5 a416abdbfa5d4c6693446653075ff66f
BLAKE2b-256 bf5fb7b5d7ca38f980a80c02a941c62fcc0a3e8e73fb5bbab93d591d54101929

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