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

tf.matrix_diag_part(input, name=None) Returns the batched diagonal part of a batched tensor. This

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

tf.igamma(a, x, name=None) Compute the lower regularized incomplete Gamma function Q(a, x). The

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

tf.matmul(a, b, transpose_a=False, transpose_b=False, a_is_sparse=False, b_is_sparse=False, name=None) Multiplies matrix a

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

tf.log(x, name=None) Computes natural logarithm of x element-wise. I.e., \(y = \log_e x\).

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

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

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

tf.sin(x, name=None) Computes sin of x element-wise. Args:

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

tf.atan(x, name=None) Computes atan of x element-wise. Args:

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

tf.squared_difference(x, y, name=None) Returns (x - y)(x - y) element-wise. NOTE:

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

tf.tan(x, name=None) Computes tan of x element-wise. Args:

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

tf.neg(x, name=None) Computes numerical negative value element-wise. I.e., (y = -x).

2025-01-10 15:47:30