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

tf.add_n(inputs, name=None) Adds all input tensors element-wise. Args:

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

tf.cholesky(input, name=None) Computes the Cholesky decomposition of one or more square matrices. The

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

tf.fft2d(input, name=None) Compute the 2-dimensional discrete Fourier Transform over the inner-most 2

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

tf.matrix_inverse(input, adjoint=None, name=None) Computes the inverse of one or more square invertible matrices or their

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

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

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

tf.transpose(a, perm=None, name='transpose') Transposes a. Permutes the dimensions according to perm

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

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

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

tf.erf(x, name=None) Computes the Gauss error function of x element-wise. Args:

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

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

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

tf.minimum(x, y, name=None) Returns the min of x and y (i.e. x < y ? x : y) element-wise. NOTE:

2025-01-10 15:47:30