tf.reduce_sum()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.reduce_sum(input_tensor, reduction_indices=None, keep_dims=False, name=None) Computes the sum of elements across dimensions

2025-01-10 15:47:30
tf.lgamma()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.lgamma(x, name=None) Computes the log of the absolute value of Gamma(x) element-wise.

2025-01-10 15:47:30
tf.rsqrt()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.rsqrt(x, name=None) Computes reciprocal of square root of x element-wise. I.e., \(y = 1 / \sqrt{x}\)

2025-01-10 15:47:30
tf.reduce_mean()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.reduce_mean(input_tensor, reduction_indices=None, keep_dims=False, name=None) Computes the mean of elements across dimensions

2025-01-10 15:47:30
tf.div()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.div(x, y, name=None) Returns x / y element-wise. NOTE: Div supports broadcasting

2025-01-10 15:47:30
tf.argmax()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.argmax(input, dimension, name=None) Returns the index with the largest value across dimensions of a tensor.

2025-01-10 15:47:30
tf.square()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.square(x, name=None) Computes square of x element-wise. I.e., (y = x * x = x^2).

2025-01-10 15:47:30
tf.segment_prod()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.segment_prod(data, segment_ids, name=None) Computes the product along segments of a tensor. Read

2025-01-10 15:47:30
tf.sparse_segment_sum()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.sparse_segment_sum(data, indices, segment_ids, name=None) Computes the sum along sparse segments of a tensor.

2025-01-10 15:47:30
tf.batch_matmul()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.batch_matmul(x, y, adj_x=None, adj_y=None, name=None) Multiplies slices of two tensors in batches. Multiplies

2025-01-10 15:47:30