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

tf.cumprod(x, axis=0, exclusive=False, reverse=False, name=None) Compute the cumulative product of the tensor x along

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

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

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

tf.cumsum(x, axis=0, exclusive=False, reverse=False, name=None) Compute the cumulative sum of the tensor x along

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

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

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

tf.conj(x, name=None) Returns the complex conjugate of a complex number. Given a tensor input

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