tf.exp(x, name=None) Computes exponential of x element-wise. \(y = e^x\). Args:
tf.abs(x, name=None) Computes the absolute value of a tensor. Given a tensor of real numbers x
tf.zeta(x, q, name=None) Compute the Hurwitz zeta function \(\zeta(x, q)\). The Hurwitz zeta function
tf.sqrt(x, name=None) Computes square root of x element-wise. I.e., (y = \sqrt{x} = x^{1/2}).
tf.cumprod(x, axis=0, exclusive=False, reverse=False, name=None) Compute the cumulative product of the tensor x along
tf.matrix_solve_ls(matrix, rhs, l2_regularizer=0.0, fast=True, name=None) Solves one or more linear least-squares problems.
tf.floor(x, name=None) Returns element-wise largest integer not greater than x. Args:
tf.round(x, name=None) Rounds the values of a tensor to the nearest integer, element-wise. For
tf.einsum(axes, *inputs) A generalized contraction between tensors of arbitrary dimension. Like
tf.matrix_band_part(input, num_lower, num_upper, name=None) Copy a tensor setting everything outside a central band in each innermost
Page 8 of 11