burn-tensor 0.16.1

Tensor library with user-friendly APIs and automatic differentiation support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Module with convolution operations.
pub mod conv;

/// Module with cat operation
pub(crate) mod cat;
/// Module with repeat operation
pub(crate) mod repeat_dim;
/// Module with unfold operations.
pub(crate) mod unfold;

/// Module with pooling operations.
pub mod pool;

mod base;

pub use base::*;