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

tf.square(x, name=None) Computes square of x element-wise. I.e., (y = x * x = x^2).

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

tf.lbeta(x, name='lbeta') Computes ln(|Beta(x)|), reducing along the last dimension. Given

2025-01-10 15:47:30
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.reduce_min()
  • References/Big Data/TensorFlow/TensorFlow Python/Math

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

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

tf.reduce_all(input_tensor, reduction_indices=None, keep_dims=False, name=None) Computes the "logical and" of elements across

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

tf.add(x, y, name=None) Returns x + y element-wise. NOTE: Add supports broadcasting

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

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

2025-01-10 15:47:30