A rust port of pytorch
dataloader
library.
Note: This project is still heavily in development and is at an early stage.
DataLoader
.Sampler
, BatchSampler
and collate_fn
.DataLoader
.Feel free to read the doc that contains tutorials for pytorch
user.
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:?}");
}
```
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.
This features could be added in the future:
BatchSampler
(by using a trait
)RandomSampler
with replacementdataloader
(using rayon?)dataloader