tf.raw_ops.ZipDataset

Creates a dataset that zips together input_datasets.

The elements of the resulting dataset are created by zipping corresponding elements from each of the input datasets.

The size of the resulting dataset will match the size of the smallest input dataset, and no error will be raised if input datasets have different sizes.

input_datasets A list of at least 1 Tensor objects with type variant. List of N variant Tensors representing datasets to be zipped together.
output_types A list of tf.DTypes that has length >= 1.
output_shapes A list of shapes (each a tf.TensorShape or list of ints) that has length >= 1.
name A name for the operation (optional).

A Tensor of type variant.