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
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.digamma()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

tf.digamma(x, name=None) Computes Psi, the derivative of Lgamma (the log of the absolute value of

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

tf.real(input, name=None) Returns the real part of a complex number. Given a tensor input

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

tf.reduce_any(input_tensor, reduction_indices=None, keep_dims=False, name=None) Computes the "logical or" 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.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.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.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.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