Module transform

Expand description

Transformations to be used with datasets.

Structs§

ComposedDataset
Compose multiple datasets together to create a bigger one.
MapperDataset
Dataset mapping each element in an inner dataset to another element type lazily.
PartialDataset
Only use a fraction of an existing dataset lazily.
SamplerDataset
Sample items from a dataset.
ShuffledDataset
Shuffled a dataset, consider using sampler dataset is you want a probability distribution that is computed lazily.
WindowsDataset
Dataset designed to work with overlapping windows of data.
WindowsIterator
Overlapping windows iterator.

Traits§

Mapper
Basic mapper trait to be used with the mapper dataset.
Window
Functionality to create a window.
Windows
Functionality to create a WindowsIterator.