pub fn get_n_best(
n: usize,
text: &str,
stop_words: &StopWords,
config: &Config,
) -> Vec<ResultItem>
Expand description
Extract the top N most important key phrases from the text.
If you need all the keywords, pass usize::MAX
.
pub fn get_n_best(
n: usize,
text: &str,
stop_words: &StopWords,
config: &Config,
) -> Vec<ResultItem>
Extract the top N most important key phrases from the text.
If you need all the keywords, pass usize::MAX
.