Trait ai_dataloader::sampler::Sampler
source · [−]pub trait Sampler: Len + IntoIterator<Item = usize> + Copy {
fn new(data_source_len: usize) -> Self;
}Expand description
Every Sampler is iterable and has a length.
pub trait Sampler: Len + IntoIterator<Item = usize> + Copy {
fn new(data_source_len: usize) -> Self;
}Every Sampler is iterable and has a length.