burn-core 0.20.1

Flexible and Comprehensive Deep Learning Framework in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod base;
mod batch;
mod builder;
mod multithread;
mod strategy;

/// Module for batching items.
pub mod batcher;
/// Module to split a dataloader.
pub mod split;

pub use base::*;
pub use batch::*;
pub use builder::*;
pub use multithread::*;
pub use strategy::*;