Home | History | Annotate | Download | only in ops

Lines Matching refs:dataset

15 """Enumerate dataset transformations."""
27 """A transformation that enumerate the elements of a dataset.
34 # contents of a dataset.
39 # structure of elements in the resulting dataset.
49 A `Dataset` transformation function, which can be passed to
50 @{tf.data.Dataset.apply}.
53 def _apply_fn(dataset):
55 return dataset_ops.Dataset.zip((dataset_ops.Dataset.range(start, max_value),
56 dataset))