Struct burn::data::dataloader::BatchDataLoader
pub struct BatchDataLoader<I, O> { /* private fields */ }
Expand description
A data loader that can be used to iterate over a dataset in batches.
Implementations§
§impl<I, O> BatchDataLoader<I, O>
impl<I, O> BatchDataLoader<I, O>
pub fn new(
strategy: Box<dyn BatchStrategy<I>>,
dataset: Arc<dyn Dataset<I>>,
batcher: Box<dyn DynBatcher<I, O>>,
rng: Option<StdRng>,
) -> BatchDataLoader<I, O>
pub fn new( strategy: Box<dyn BatchStrategy<I>>, dataset: Arc<dyn Dataset<I>>, batcher: Box<dyn DynBatcher<I, O>>, rng: Option<StdRng>, ) -> BatchDataLoader<I, O>
§impl<I, O> BatchDataLoader<I, O>
impl<I, O> BatchDataLoader<I, O>
pub fn multi_thread(
strategy: Box<dyn BatchStrategy<I>>,
dataset: Arc<dyn Dataset<I>>,
batcher: Box<dyn DynBatcher<I, O>>,
num_threads: usize,
rng: Option<StdRng>,
) -> MultiThreadDataLoader<O>
pub fn multi_thread( strategy: Box<dyn BatchStrategy<I>>, dataset: Arc<dyn Dataset<I>>, batcher: Box<dyn DynBatcher<I, O>>, num_threads: usize, rng: Option<StdRng>, ) -> MultiThreadDataLoader<O>
Trait Implementations§
§impl<I, O> Clone for BatchDataLoader<I, O>
impl<I, O> Clone for BatchDataLoader<I, O>
§fn clone(&self) -> BatchDataLoader<I, O>
fn clone(&self) -> BatchDataLoader<I, O>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<I, O> DataLoader<O> for BatchDataLoader<I, O>
impl<I, O> DataLoader<O> for BatchDataLoader<I, O>
§fn iter<'a>(&'a self) -> Box<dyn DataLoaderIterator<O, Item = O> + 'a>
fn iter<'a>(&'a self) -> Box<dyn DataLoaderIterator<O, Item = O> + 'a>
Returns a boxed iterator to iterate over the data loader.
Auto Trait Implementations§
impl<I, O> Freeze for BatchDataLoader<I, O>
impl<I, O> !RefUnwindSafe for BatchDataLoader<I, O>
impl<I, O> Send for BatchDataLoader<I, O>
impl<I, O> !Sync for BatchDataLoader<I, O>
impl<I, O> Unpin for BatchDataLoader<I, O>
impl<I, O> !UnwindSafe for BatchDataLoader<I, O>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<D, O> DynDataLoader<O> for Dwhere
D: DataLoader<O> + Clone + 'static,
impl<D, O> DynDataLoader<O> for Dwhere
D: DataLoader<O> + Clone + 'static,
§fn clone_dyn(&self) -> Box<dyn DynDataLoader<O>>
fn clone_dyn(&self) -> Box<dyn DynDataLoader<O>>
Clone the dataloader and returns a new one.
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more