Module alumina::data[][src]

Re-exports

pub use data::crop::Crop;
pub use data::crop::Cropping;

Modules

cifar
crop
image_folder
mnist

Structs

Batch

Adds an outer batch dimension to each component by combining multiple elements.

BoxedSet

Its just a box, but the newtype avoids deref not Sized nonsense

Buffered

Augment a stream with a fixed sized buffer fed by a new thread.

ConcatComponents

Concatenate two DataSets in the width direction

ConcatElements

Concatenate two DataSets in the length direction

Count

Keeps a count of how many times next is called().

Interleave

Alternates returning from each provided DataStreams

MapAll

For each element, map the components to a completely new vec of components.

MapOne

For one component in each element of the dataset: apply a function.

Random
ReorderComponents

Reorder the components within each element of the set

ReorderElements

Reorder the element of the set

Sequential
ShuffleRandom
Zip

Concatenates the components of two DataStreams

Traits

DataSet

An indexable data set. To use tensorflow terminology a dataset is made up of elements(Vec<ArrayD>>s), each of which can contain multiple components (ArrayDs)

DataStream