CI Coverage

ai-dataloader

A rust port of pytorch dataloader library.

Note: This project is still heavily in development and is at an early stage.

Highlights

Feel free to read the doc that contains tutorials for pytorch user.

Examples

Examples can be found in the examples folder but here there is a simple one

```rust use ai-dataloader::DataLoader;

let loader = DataLoader::builder(vec![(0, "hola"), (1, "hello"), (2, "hallo"), (3, "bonjour")]).batch_size(2).shuffle().build();

for (label, text) in &loader {
println!("Label {label:?}"); println!("Text {text:?}"); } ```

GPU

ndarray can't currently run on the GPU.

But if you're tensor library can be created from a ndarray, it could be easily integrated.

I've planned to integrate different tensor libraries using features, file free to add an issue if you want to submit one.

Next Features

This features could be added in the future: