Trait burn::data::dataset::transform::Windows

pub trait Windows<I> {
    // Required method
    fn windows(&self, size: usize) -> WindowsIterator<'_, I> ;
}
Expand description

Functionality to create a WindowsIterator.

Required Methods§

fn windows(&self, size: usize) -> WindowsIterator<'_, I>

Creates and returns an iterator over all the windows of length size.

Implementors§

§

impl<I, T> Windows<I> for T
where T: Dataset<I>,