rust2vec/
lib.rs

1//! A library for reading, writing, and using word embeddings.
2//!
3//! rust2vec allows you to read, write, and use word2vec and GloVe
4//! embeddings. rust2vec uses *finalfusion* as its native data
5//! format, which has several benefits over the word2vec and GloVe
6//! formats.
7
8#[deprecated(note = "rust2vec is superseded by the finalfusion crate")]
9pub mod embeddings;
10
11pub mod io;
12
13pub mod metadata;
14
15pub mod prelude;
16
17pub mod similarity;
18
19pub mod storage;
20
21pub(crate) mod subword;
22
23pub mod text;
24
25pub(crate) mod util;
26
27pub mod vocab;
28
29pub mod word2vec;
30
31#[cfg(test)]
32mod tests;