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

tf.truediv(x, y, name=None) Divides x / y elementwise, always producing floating point results. The

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

tf.pow(x, y, name=None) Computes the power of one value to another. Given a tensor x

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

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

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

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

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

tf.invert_permutation(x, name=None) Computes the inverse permutation of a tensor. This operation

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

tf.fft(input, name=None) Compute the 1-dimensional discrete Fourier Transform over the inner-most dimension

2025-01-10 15:47:30