chainer.datasets.TupleDataset¶
-
class
chainer.datasets.TupleDataset(*datasets)[source]¶ Dataset of a tuple of datasets.
It combines multiple datasets into one dataset. Each example is represented by a tuple whose
i-th item corresponds to the i-th dataset.Parameters: datasets – Underlying datasets. The i-th one is used for thei-th item of each example. All datasets must have the same length.Methods