rumus 0.2.1

A native-Rust deep learning framework with explicit memory safety and hardware acceleration
Documentation
1
2
3
4
5
6
7
//! Data loading pipeline: datasets and batched iterators.

mod dataloader;
mod dataset;

pub use dataloader::{DataLoader, DataLoaderIter};
pub use dataset::{DataItem, Dataset};