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

tf.matrix_solve(matrix, rhs, adjoint=None, name=None) Solves systems of linear equations. Matrix

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

tf.maximum(x, y, name=None) Returns the max of x and y (i.e. x > y ? x : y) element-wise. NOTE:

2025-01-10 15:47:30