1
2
3
4
5
6
7
8
9
10
//!
//! This crate provides functionality for evaluation metrics commonly found in machine learning
//!

pub mod classification;
pub mod regression;
pub mod error;
mod display;
mod numeric;
mod util;