#algorithm #extract #rapid #automatic #keyword #multilingual

rake

Rust implementation of Rapid Automatic Keyword Extraction (RAKE) algorithm

12 releases

0.3.4 Apr 7, 2024
0.3.3 Feb 24, 2021
0.3.2 Dec 25, 2020
0.3.0 May 10, 2020
0.1.1 Mar 17, 2018

#352 in Algorithms

Download history 3/week @ 2023-12-22 4/week @ 2024-02-02 5/week @ 2024-02-09 23/week @ 2024-02-16 23/week @ 2024-02-23 19/week @ 2024-03-01 35/week @ 2024-03-08 17/week @ 2024-03-15 18/week @ 2024-03-22 38/week @ 2024-03-29 166/week @ 2024-04-05

246 downloads per month

MIT/Apache

12KB
211 lines

RAKE.rs

crates.io Documentation Crates.io Test

The library provides a multilingual implementation of Rapid Automatic Keyword Extraction (RAKE) algorithm for Rust.

How to Use

  • Append rake to dependencies of Cargo.toml:
rake = "0.3"
  • Import modules:
use rake::*;
  • Create a new instance of Rake struct:
let text = "a long text";
let sw = StopWords::from_file("path/to/stop_words_list.txt").unwrap();
let r = Rake::new(sw);
let keywords = r.run(text);
  • Iterate over keywords:
keywords.iter().for_each(
    |&KeywordScore {
        ref keyword,
        ref score,
    }| println!("{}: {}", keyword, score),
);

Dependencies

~2.5–4MB
~76K SLoC