deep_core 0.1.1

deep prototype
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate deep_core as core;

use core::math::Tensor;

fn main() {
    let tensor: Tensor<u16> = Tensor::default((3, 3, 3));
    for item in &tensor {
        println!("tensor[{:?}] == {:?}", item.index, item.value);
    }
}