rumus 0.2.2

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

mod dataloader;
mod dataset;

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