tf.round(x, name=None)
Rounds the values of a tensor to the nearest integer, element-wise.
For example:
# 'a' is [0.9, 2.5, 2.3, -4.4] tf.round(a) ==> [ 1.0, 3.0, 2.0, -4.0 ]
Args:
-
x
: ATensor
of typefloat32
orfloat64
. -
name
: A name for the operation (optional).
Returns:
A Tensor
of same shape and type as x
.
Please login to continue.