rake
Implementation of RAKE algorithm (Rapid Automatic Keyword Extraction algorithm) based on https://github.com/u-prashant/RAKE
load_stop_words
load_stop_words (stop_words_file_path:str)
Loads stop words from a file and return as a list of words.
Args: stop_words_file_path: filepath of a file containing stop words
build_stop_word_regex
build_stop_word_regex (stop_words_file_path:str)
Builds a regex expression to match any of the stop word.
Args: stop_words_file_path: filepath of a file containing stop words
RAKE
RAKE (stop_words_file:str='')
Rapid Automatic Keyword Extraction algorithm.