vm.tensorflow.math

Functions

abs(…) : Compute the absolute value of input.

add(…) : Compute the element-wise addition.

add_n(…) : Compute the element-wise sum on a sequence of inputs.

argmax(…) : Compute the index of maximum elements along the given axis.

argmin(…) : Compute the index of minimum elements along the given axis.

atan2(…) : Compute the element-wise arc-tangent of two arguments.

ceil(…) : Compute the smallest integer not less than input.

cos(…) : Compute the cos of input.

cumsum(…) : Compute the cumulative sum of elements along the given axis.

divide(…) : Compute the element-wise division.

equal(…) : Compute the element-wise equal comparison.

exp(…) : Compute the exponential of input.

floor(…) : Compute the largest integer not greater than input.

greater(…) : Compute the element-wise greater comparison.

greater_equal(…) : Compute the element-wise greater-equal comparison.

is_finite(…) : Check if the elements of input are finite.

is_inf(…) : Check if the elements of input are infinite.

is_nan(…) : Check if the elements of input are NaN.

l2_normalize(…) : Apply the l2 normalization.

less(…) : Compute the element-wise less comparison.

less_equal(…) : Compute the element-wise less-equal comparison.

log(…) : Compute the logarithm of input.

multiply(…) : Compute the element-wise multiplication.

negative(…) : Compute the element-wise negative.

not_equal(…) : Compute the element-wise not-equal comparison.

pow(…) : Compute the power of input.

reciprocal(…) : Compute the reciprocal of input.

reduce_max(…) : Compute the max value of elements along the given axis.

reduce_mean(…) : Compute the mean value of elements along the given axis.

reduce_min(…) : Compute the min value of elements along the given axis.

reduce_sum(…) : Compute the sum value of elements along the given axis.

reduce_variance(…) : Compute the variance value of elements along the given axis.

round(…) : Compute the nearest integer of input.

rsqrt(…) : Compute the reciprocal square root of input.

sigmoid(…) : Compute the sigmoid function.

sign(…) : Compute the sign indication of input.

sin(…) : Compute the sin of input.

sqrt(…) : Compute the square root of input.

square(…) : Compute the square of input.

subtract(…) : Compute the element-wise subtraction.

tanh(…) : Compute the tanh of input.

top_k(…) : Return the top k-largest elements along the last axis.