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

tf.matrix_solve_ls(matrix, rhs, l2_regularizer=0.0, fast=True, name=None) Solves one or more linear least-squares problems.

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

tf.einsum(axes, *inputs) A generalized contraction between tensors of arbitrary dimension. Like

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

tf.round(x, name=None) Rounds the values of a tensor to the nearest integer, element-wise. For

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

tf.matrix_band_part(input, num_lower, num_upper, name=None) Copy a tensor setting everything outside a central band in each innermost

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

tf.floor(x, name=None) Returns element-wise largest integer not greater than x. Args:

2025-01-10 15:47:30