A substitute for InterleaveDataset
on a fixed list of N
datasets.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.raw_ops.ExperimentalDirectedInterleaveDataset(
selector_input_dataset, data_input_datasets, output_types, output_shapes,
name=None
)
Args | |
---|---|
selector_
|
A Tensor of type variant .
A dataset of scalar DT_ elements that determines which of the
N data inputs should produce the next output element.
|
data_
|
A list of at least 1 Tensor objects with type variant .
N datasets with the same type that will be interleaved according to
the values of selector_ .
|
output_
|
A list of tf. that has length >= 1 .
|
output_
|
A list of shapes (each a tf.TensorShape or list of ints ) that has length >= 1 .
|
name
|
A name for the operation (optional). |
Returns | |
---|---|
A Tensor of type variant .
|