concision-math 0.1.21

Concision is a toolkit for designing machine-learning models in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
    Appellation: utils <module>
    Contrib: @FL03
*/
//! utilties supporting various mathematical routines for machine learning tasks.
#[doc(inline)]
pub use self::prelude::*;

pub mod arith;

pub(crate) mod prelude {
    #[doc(inline)]
    pub use super::arith::*;
}