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

tf.exp(x, name=None) Computes exponential of x element-wise. \(y = e^x\). Args:

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

tf.abs(x, name=None) Computes the absolute value of a tensor. Given a tensor of real numbers x

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

tf.zeta(x, q, name=None) Compute the Hurwitz zeta function \(\zeta(x, q)\). The Hurwitz zeta function

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.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.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.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
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.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.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