ai_kit 0.1.0

Collection of classic AI algorithms with convenient interfaces
Documentation
1
2
3
4
5
6
7
macro_rules! from_json {
    ($type: ty, $json: tt) => ({
        use serde_json;
        let x: $type = serde_json::from_value(json!($json)).expect("Expected json decoding");
        x
    })
}