clevercloud.CleverLemStem

Module Contents

Functions

CleverLemStem(text)

A preprocessor to conduct lemmatinzation and stemming on the text.

clevercloud.CleverLemStem.CleverLemStem(text)[source]

A preprocessor to conduct lemmatinzation and stemming on the text.

Parameters

text (str) – Input a string

Returns

The lemmatized and stemmed string

Return type

str

Examples

>>> sample_text = "maximum crying feet"
>>> CleverLemStem(sample_text)
"maxim cry foot"