HomeSort by relevance Sort by last modified time
    Searched refs:example_indices (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/contrib/linear_optimizer/python/ops/
sparse_feature_column.py 66 @@example_indices
71 def __init__(self, example_indices, feature_indices, feature_values):
75 example_indices: A 1-D int64 tensor of shape `[N]`. Also, accepts
86 [example_indices, feature_indices]):
88 example_indices, name='example_indices', dtype=dtypes.int64)
98 def example_indices(self): member in class:SparseFeatureColumn
sparse_feature_column_test.py 36 self.assertTrue(isinstance(sfc.example_indices, ops.Tensor))
40 self.assertAllEqual(expected_example_indices, sfc.example_indices.eval())
sdca_ops.py 245 sfc.example_indices)
303 sparse_example_indices.append(sf.example_indices)
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/batch/
categorical_split_handler.py 120 example_indices, _ = array_ops.split(
122 example_indices = array_ops.squeeze(example_indices, [1])
124 filtered_gradients = array_ops.gather(gradients, example_indices)
125 filtered_hessians = array_ops.gather(hessians, example_indices)
127 example_indices)
ordinal_split_handler.py 473 example_indices, _ = array_ops.split(
475 example_indices = array_ops.squeeze(example_indices, [1])
476 filtered_gradients = array_ops.gather(gradients, example_indices)
477 filtered_hessians = array_ops.gather(hessians, example_indices)
479 example_indices)
  /external/tensorflow/tensorflow/contrib/kernel_methods/python/
losses.py 115 example_indices = array_ops.reshape(
119 example_indices,
121 math_ops.cast(labels, example_indices.dtype),
  /external/tensorflow/tensorflow/core/kernels/
sdca_internal.cc 385 auto example_indices =
396 while (end_id < example_indices.size() &&
397 example_indices(end_id) == example_id) {
402 if (start_id < example_indices.size() &&
403 example_indices(start_id) == example_id) {

Completed in 229 milliseconds