Searched defs:dataset_ops (Results 1 - 25 of 63) sorted by relevance

123

/external/tensorflow/tensorflow/contrib/data/python/ops/
H A Dget_single_element.py20 from tensorflow.python.data.ops import dataset_ops namespace
60 if not isinstance(dataset, dataset_ops.Dataset):
H A Dcounter.py22 from tensorflow.python.data.ops import dataset_ops namespace
51 return dataset_ops.Dataset.from_tensors(0).repeat(None).apply(
H A Denumerate_ops.py22 from tensorflow.python.data.ops import dataset_ops namespace
55 return dataset_ops.Dataset.zip((dataset_ops.Dataset.range(start, max_value),
H A Dunique.py20 from tensorflow.python.data.ops import dataset_ops namespace
51 class UniqueDataset(dataset_ops.Dataset):
H A Derror_ops.py22 from tensorflow.python.data.ops import dataset_ops namespace
56 class IgnoreErrorsDataset(dataset_ops.Dataset):
H A Drandom_ops.py20 from tensorflow.python.data.ops import dataset_ops namespace
31 class RandomDataset(dataset_ops.Dataset):
H A Dreaders.py20 from tensorflow.python.data.ops import dataset_ops namespace
149 class SqlDataset(dataset_ops.Dataset):
H A Dresampling.py24 from tensorflow.python.data.ops import dataset_ops namespace
63 initial_dist_ds = dataset_ops.Dataset.from_tensors(
65 acceptance_dist_ds = dataset_ops.Dataset.from_tensors(
100 acceptance_dist_ds = (dataset_ops.Dataset.zip((acceptance_dist_ds,
104 current_probabilities_ds = dataset_ops.Dataset.zip(
107 dataset_ops.Dataset.zip((class_values_ds, current_probabilities_ds,
H A Dscan_ops.py22 from tensorflow.python.data.ops import dataset_ops namespace
30 class _ScanDataset(dataset_ops.Dataset):
H A Dshuffle_ops.py20 from tensorflow.python.data.ops import dataset_ops namespace
30 class _ShuffleAndRepeatDataset(dataset_ops.Dataset):
/external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
H A Dconcatenate_dataset_op_test.py23 from tensorflow.python.data.ops import dataset_ops namespace
36 return dataset_ops.Dataset.from_tensor_slices(input_components).concatenate(
37 dataset_ops.Dataset.from_tensor_slices(to_concatenate_components))
H A Dprefetch_dataset_op_test.py21 from tensorflow.python.data.ops import dataset_ops namespace
29 return dataset_ops.Dataset.range(100).prefetch(10).shuffle(
H A Dzip_dataset_op_test.py23 from tensorflow.python.data.ops import dataset_ops namespace
37 dataset_ops.Dataset.from_tensor_slices(component)
40 return dataset_ops.Dataset.zip((datasets[0], (datasets[1], datasets[2])))
H A Dget_single_element_test.py21 from tensorflow.python.data.ops import dataset_ops namespace
36 dataset = (dataset_ops.Dataset.range(100)
H A Dresample_test.py23 from tensorflow.python.data.ops import dataset_ops namespace
42 iterator = (dataset_ops.Dataset.from_tensor_slices(classes).shuffle(
H A Dserialization_integration_test.py23 from tensorflow.python.data.ops import dataset_ops namespace
33 ds = dataset_ops.Dataset.range(num_outputs).shuffle(
H A Dfilter_dataset_op_test.py23 from tensorflow.python.data.ops import dataset_ops namespace
33 return dataset_ops.Dataset.range(100).filter(
44 return dataset_ops.Dataset.range(10).map(
62 return dataset_ops.Dataset.range(10).map(_map_fn).filter(_filter_fn).map(
H A Dsequence_dataset_op_test.py23 from tensorflow.python.data.ops import dataset_ops namespace
32 return dataset_ops.Dataset.from_tensor_slices(components).skip(count)
52 return dataset_ops.Dataset.from_tensor_slices(components).take(count)
74 return dataset_ops.Dataset.from_tensor_slices(components).take(
H A Dunique_dataset_op_test.py22 from tensorflow.python.data.ops import dataset_ops namespace
44 dataset = dataset_ops.Dataset.from_generator(lambda: current_test_case,
88 return dataset_ops.Dataset.range(num_elements).map(
/external/tensorflow/tensorflow/contrib/kfac/python/ops/
H A Dop_queue.py21 from tensorflow.python.data.ops import dataset_ops namespace
46 op_names_dataset = (dataset_ops.Dataset.from_tensor_slices(op_names)
/external/tensorflow/tensorflow/python/data/kernel_tests/
H A Dconcatenate_dataset_op_test.py22 from tensorflow.python.data.ops import dataset_ops namespace
41 input_dataset = dataset_ops.Dataset.from_tensor_slices(input_components)
42 dataset_to_concatenate = dataset_ops.Dataset.from_tensor_slices(
74 input_dataset = dataset_ops.Dataset.from_tensor_slices(input_components)
75 dataset_to_concatenate = dataset_ops.Dataset.from_tensor_slices(
109 input_dataset = dataset_ops.Dataset.from_tensor_slices(input_components)
110 dataset_to_concatenate = dataset_ops.Dataset.from_tensor_slices(
125 input_dataset = dataset_ops.Dataset.from_tensor_slices(input_components)
126 dataset_to_concatenate = dataset_ops.Dataset.from_tensor_slices(
H A Dprefetch_dataset_op_test.py20 from tensorflow.python.data.ops import dataset_ops namespace
31 iterator = dataset_ops.Dataset.range(10).prefetch(
45 iterator = dataset_ops.Dataset.range(10).prefetch(
H A Dsequence_dataset_op_test.py22 from tensorflow.python.data.ops import dataset_ops namespace
39 iterator = (dataset_ops.Dataset.from_tensors(components)
85 iterator = (dataset_ops.Dataset.from_tensor_slices(components)
131 iterator = (dataset_ops.Dataset.from_tensor_slices(components)
178 iterator = (dataset_ops.Dataset.from_tensors(components).repeat(inner_count)
197 iterator = (dataset_ops.Dataset.from_tensors(0).repeat(10).skip(10)
H A Dzip_dataset_op_test.py22 from tensorflow.python.data.ops import dataset_ops namespace
39 dataset_ops.Dataset.from_tensor_slices(component_placeholder)
42 zipped = dataset_ops.Dataset.zip(datasets)
83 dataset_ops.Dataset.from_tensor_slices(component_placeholder)
86 zipped = dataset_ops.Dataset.zip((datasets[0], (datasets[1], datasets[2])))
H A Dflat_map_dataset_op_test.py25 from tensorflow.python.data.ops import dataset_ops namespace
40 dataset_ops.Dataset.from_tensor_slices(components)
41 .flat_map(lambda x: dataset_ops.Dataset.from_tensors([x]).repeat(x))
58 dataset_ops.Dataset.from_tensor_slices(components)
59 .flat_map(lambda x: dataset_ops.Dataset.from_tensor_slices(x)
60 .flat_map(lambda y: dataset_ops.Dataset.from_tensors(y)
79 dataset_ops.Dataset.from_tensor_slices(components)
80 .flat_map(lambda x: dataset_ops.Dataset.from_tensor_slices(x)
81 .flat_map(lambda y: dataset_ops.Dataset.from_tensors(y)
108 iterator = (dataset_ops
[all...]

Completed in 151 milliseconds

123