1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! A library for reading, writing, and using word embeddings.
//!
//! rust2vec allows you to read, write, and use word2vec and GloVe
//! embeddings. rust2vec uses *finalfusion* as its native data
//! format, which has several benefits over the word2vec and GloVe
//! formats.

#[deprecated(note = "rust2vec is superseded by the finalfusion crate")]
pub mod embeddings;

pub mod io;

pub mod metadata;

pub mod prelude;

pub mod similarity;

pub mod storage;

pub(crate) mod subword;

pub mod text;

pub(crate) mod util;

pub mod vocab;

pub mod word2vec;

#[cfg(test)]
mod tests;