data¶
Data Iterators¶
Designed to feed the network data for training.
Iterators return Batch datatype, which is named tuple with inputs and targets tensors:
Batch = NamedTuple("Batch", [("inputs", Tensor), ("targets", Tensor)])
Classes
|
|
|
Default iterator, returns batches of input, target pairs. |
Base class that every data iterator inherits. |