base_text_processing
Module Contents
Classes
- class base_text_processing.BaseTextProcessing
- static normalize_text(txt: str, lower: bool = True, remove_digit: bool = True, remove_punct: bool = True) str
Lower-casing
Digit removal
Punctuation removal
- static get_word_frequency(str_list: List[str], remove_stop_words: bool = True, additional_stop_words: List[str] = [], language='english') List