Home
last modified time | relevance | path

Searched refs:reduce_max (Results 1 – 25 of 59) sorted by relevance

123

/external/tensorflow/tensorflow/contrib/quantize/python/
Dquant_ops.py140 batch_max = math_ops.reduce_max(
145 batch_max = math_ops.reduce_max(inputs, name='BatchMax')
253 batch_max = math_ops.reduce_max(
258 batch_max = math_ops.reduce_max(inputs, name='BatchMax')
/external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
Dhalton_sequence_impl.py157 max_sizes_by_axes = _base_expansion_size(math_ops.reduce_max(indices),
160 max_size = math_ops.reduce_max(max_sizes_by_axes)
Dmonte_carlo_impl.py361 return math_ops.reduce_max(values, reduction_indices=[0])
/external/tensorflow/tensorflow/tools/compatibility/testdata/
Dtest_file_v0_11.py83 tf.reduce_max(
86 tf.reduce_max(
88 self.assertAllEqual(tf.reduce_max(a, [0, 1]).eval(), 6.0)
/external/tensorflow/tensorflow/python/ops/
Dconfusion_matrix.py170 num_classes = math_ops.maximum(math_ops.reduce_max(predictions),
171 math_ops.reduce_max(labels)) + 1
Dlinalg_ops.py559 result = math_ops.reduce_max(result, axis[-1], keepdims=True)
564 result = math_ops.reduce_max(result, max_axis, keepdims=True)
/external/tensorflow/tensorflow/contrib/labeled_tensor/
D__init__.py127 reduce_max = _ops.reduce_max variable
/external/tensorflow/tensorflow/contrib/crf/python/ops/
Dcrf.py394 new_state = inputs + math_ops.reduce_max(transition_scores, [1]) # [B, O]
467 best_score = math_ops.reduce_max(squeezed_potentials, axis=1)
510 best_score = math_ops.reduce_max(last_score, axis=1) # [B]
/external/tensorflow/tensorflow/python/kernel_tests/
Dstage_op_test.py40 y = math_ops.reduce_max(math_ops.matmul(y, y))
59 y = math_ops.reduce_max(z * math_ops.matmul(y, y))
84 y = math_ops.reduce_max(z * math_ops.matmul(y, y))
Dreduction_ops_test.py100 math_ops.reduce_prod, math_ops.reduce_max,
675 tf_ans = math_ops.reduce_max(x, reduction_axes, keepdims)
689 v = math_ops.reduce_max([0, 0], constant_op.constant(0, dtype=dtype))
747 su = math_ops.reduce_max(t, [1, 2])
757 su = math_ops.reduce_max(t, [1])
767 su = math_ops.reduce_max(t, [2])
777 su = math_ops.reduce_max(t)
785 y = math_ops.reduce_max(x, [1])
Dmap_stage_op_test.py43 y = math_ops.reduce_max(math_ops.matmul(y, y))
64 y = math_ops.reduce_max(z * math_ops.matmul(y, y))
91 y = math_ops.reduce_max(z * math_ops.matmul(y, y))
/external/tensorflow/tensorflow/contrib/mpi_collectives/
Dmpi_ops_test.py96 max_difference = tf.reduce_max(tf.abs(summed - multiplied))
140 max_difference = tf.reduce_max(tf.abs(summed - multiplied))
/external/tensorflow/tensorflow/python/layers/
Dmaxout.py108 outputs = math_ops.reduce_max(
Dconvolutional_test.py297 b_constraint = lambda x: x / math_ops.reduce_max(x)
308 b_constraint = lambda x: x / math_ops.reduce_max(x)
319 b_constraint = lambda x: x / math_ops.reduce_max(x)
479 b_constraint = lambda x: x / math_ops.reduce_max(x)
723 b_constraint = lambda x: x / math_ops.reduce_max(x)
911 b_constraint = lambda x: x / math_ops.reduce_max(x)
1092 b_constraint = lambda x: x / math_ops.reduce_max(x)
/external/tensorflow/tensorflow/contrib/kernel_methods/python/
Dlosses.py133 loss = math_ops.reduce_max(margin, axis=1)
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_SparseReduceMaxSparse.pbtxt37 `tf.reduce_max()`. In contrast to SparseReduceMax, this Op returns a
Dapi_def_SparseReduceMax.pbtxt43 `tf.reduce_max()`. In particular, this Op also returns a dense `Tensor`
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/
Dmetric_loss_ops.py136 masked_maximums = math_ops.reduce_max(
154 axis_maximums = math_ops.reduce_max(data, dim, keepdims=True)
452 row_negative_maximums = math_ops.reduce_max(
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
Dmath_utils.py63 maximum = math_ops.reduce_max(diagonal, axis=-1, keep_dims=True)
795 math_ops.reduce_max(times, axis=1) - math_ops.reduce_min(times, axis=1),
807 math_ops.reduce_max(times)))
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator.py477 cond = (math_ops.reduce_max(singular_values, axis=-1) /
489 math_ops.reduce_max([
/external/tensorflow/tensorflow/contrib/data/python/ops/
Dresampling.py162 max_ratio = math_ops.reduce_max(ratio_l)
/external/tensorflow/tensorflow/contrib/layers/python/ops/
Dsparse_ops.py168 math_ops.reduce_max(row_index_indicators), shape=(1,),
/external/tensorflow/tensorflow/examples/learn/
Dtext_classification_cnn.py76 pool2 = tf.squeeze(tf.reduce_max(conv2, 1), squeeze_dims=[1])
Dtext_classification_character_cnn.py77 pool2 = tf.squeeze(tf.reduce_max(conv2, 1), squeeze_dims=[1])
/external/tensorflow/tensorflow/contrib/gan/python/losses/python/
Dlosses_impl.py816 list_max = math_ops.reduce_max([math_ops.reduce_max(math_ops.abs(x)) for x in

123