module documentation

Undocumented

Function generate_stop_word_filter Builds a stopWordFilter function from the provided list of stop words.
Constant WORDS Undocumented
Variable stop_word_filter Undocumented
def generate_stop_word_filter(stop_words, language=None): (source)

Builds a stopWordFilter function from the provided list of stop words. The built in `stop_word_filter` is built using this factory and can be used to generate custom `stop_word_filter` for applications or non English languages.

WORDS: set[str] = (source)

Undocumented

Value
set(['a',
     'able',
     'about',
     'across',
     'after',
     'all',
     'almost',
...
stop_word_filter = (source)

Undocumented