Skip to content

APIreference

text preprocessing using lemmatization

from quick_preprocessing import lemmatize_preprocessing
EXAMPLE

Short Example

EXAMPLE: sent = "hello my name is Ankur. I lives in canada. I am goods. I studies at concordia. I studies software engineering"
lst= sent.split(".")
preprocess = lemmatize_preprocessing(lst)

OUTPUT: ['hello name ankur',
 'life canada',
 'good',
 'study concordia',
 'study software engineering']

text preprocessing using stemming

from quick_preprocessing import stemming_preprocessing

spelling correction

from quick_preprocessing import spell_corrector

NOTE

Input has to be in list