Skip to content

CielZ001/NLPStreamline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NLP Streamline Tool

A Python package that streamlines basic text & NLP processing

Pypi: https://pypi.org/project/nlpstreamline/

How to Use

  1. After installing the package, import the functions you need:
from nlpstreamline import (
    basic_text_processing,
    nlp_text_processing,
    n_gram_generation
)
  1. Use following code to do basic text processing(lowercasing, removing urls, tokenizing, remove stopwords and punctuations), nlp processing (stemming and lemmatizing), and n grams generation.
print(basic_text_processing('Good Morning! How are you today?'))

print(nlp_text_processing('Good Morning! How are you today?'))

print(n_gram_generation('Good Morning! How are you today?', 2))

About

Streamline basic text & NLP processing

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages