Home
last modified time | relevance | path

Searched refs:example_indices (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/contrib/linear_optimizer/python/ops/
Dsparse_feature_column.py81 def __init__(self, example_indices, feature_indices, feature_values): argument
96 [example_indices, feature_indices]):
98 example_indices, name='example_indices', dtype=dtypes.int64)
108 def example_indices(self): member in SparseFeatureColumn
Dsparse_feature_column_test.py41 self.assertTrue(isinstance(sfc.example_indices, ops.Tensor))
45 self.assertAllEqual(expected_example_indices, sfc.example_indices.eval())
Dsdca_ops.py317 sfc.example_indices)
402 sparse_example_indices.append(sf.example_indices)
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/batch/
Dcategorical_split_handler.py129 example_indices, _ = array_ops.split(
131 example_indices = array_ops.squeeze(example_indices, [1])
133 filtered_gradients = array_ops.gather(gradients, example_indices)
134 filtered_hessians = array_ops.gather(hessians, example_indices)
136 example_indices)
Dordinal_split_handler.py669 example_indices, _ = array_ops.split(
671 example_indices = array_ops.squeeze(example_indices, [1])
672 filtered_gradients = array_ops.gather(gradients, example_indices)
673 filtered_hessians = array_ops.gather(hessians, example_indices)
675 example_indices)
/external/tensorflow/tensorflow/contrib/kernel_methods/python/
Dlosses.py115 example_indices = array_ops.reshape(
119 example_indices,
121 math_ops.cast(labels, example_indices.dtype),
/external/tensorflow/tensorflow/core/kernels/
Dsdca_internal.cc399 auto example_indices = in CreateSparseFeatureRepresentation() local
410 while (end_id < example_indices.size() && in CreateSparseFeatureRepresentation()
411 example_indices(end_id) == example_id) { in CreateSparseFeatureRepresentation()
416 if (start_id < example_indices.size() && in CreateSparseFeatureRepresentation()
417 example_indices(start_id) == example_id) { in CreateSparseFeatureRepresentation()