finalfusion 0.18.0

Reader and writer for common word embedding formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Support for the floret embedding format.
//!
//! More information about floret can be found at:
//! https://github.com/explosion/floret#how-floret-works
//!
//! floret differs from finalfusion/fasttext embeddings in the
//! following ways:
//!
//! * No separate embeddings are stored for words.
//! * The word and its n-grams are mapped to 1-4 buckets.

mod io;
pub use io::{ReadFloretText, WriteFloretText};

mod indexer;
pub use indexer::FloretIndexer;