quickbrain 0.1.0

A simple neural network library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// use super::matrix::Matrix;
// pub struct Tensor {
//     data: Vec<f64>,
//     shape: Vec<usize>,
// }
//
// impl From<Matrix> for Tensor {
//     fn from(value: Matrix) -> Self {
//         Tensor {
//             data: value.get_data().clone(),
//             shape: vec![value.get_rows(), value.get_cols()],
//         }
//     }
// }