Searched refs:example_indices (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/contrib/linear_optimizer/python/ops/ |
D | sparse_feature_column.py | 81 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
|
D | sparse_feature_column_test.py | 41 self.assertTrue(isinstance(sfc.example_indices, ops.Tensor)) 45 self.assertAllEqual(expected_example_indices, sfc.example_indices.eval())
|
D | sdca_ops.py | 317 sfc.example_indices) 402 sparse_example_indices.append(sf.example_indices)
|
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/batch/ |
D | categorical_split_handler.py | 129 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)
|
D | ordinal_split_handler.py | 669 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/ |
D | losses.py | 115 example_indices = array_ops.reshape( 119 example_indices, 121 math_ops.cast(labels, example_indices.dtype),
|
/external/tensorflow/tensorflow/core/kernels/ |
D | sdca_internal.cc | 399 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()
|