rust_metrics 0.1.0

Incremental evaluation metrics for classification and text generation pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "text-bert")]
pub mod bert;

#[cfg(feature = "text-bert")]
pub use bert::SentenceEmbeddingSimilarity;

pub mod bleu;
pub mod edit;

pub use bleu::Bleu;
pub use edit::EditDistance;