#memory #word #vector #terms #index #binary #parse

word_vec-rs

Memory efficient library to work with word2vec vectors

1 unstable release

0.1.1 May 11, 2023
0.1.0 May 11, 2023

#453 in Machine learning

28 downloads per month

AGPL-3.0-or-later

28KB
722 lines

word_vec-rs

Memory efficient library to work with word vectors

Example


let space = Word2VecParser::new()
    // Parse binary file
    .binary()
    // Index terms to find vectors faster.
    .index_terms(true)
    .parse_file("./GoogleNews-vectors-negative300.bin")
    .unwrap();
   
let hello = space.find_term("hello").unwrap();
let hi = space.find_term("hi").unwrap();
println!("{}", hello.cosine(&hi));

Convert file format

// Load a space
let space = Word2VecParser::new()
    .binary()
    .index_terms(true)
    .parse_file("./GoogleNews-vectors-negative300.bin")
    .unwrap();

// export space to .vec file
let out = BufWriter::new(File::create("GoogleNews-vectors-negative300.vec").unwrap());
Exporter::new(out).export_space(&space).unwrap();

Dependencies

~4.5MB
~92K SLoC