View source on GitHub |
Return the floor of the input, element-wise.
tf.keras.ops.floor(
x
)
The floor of the scalar x
is the largest integer i
, such that i <= x
.
Args | |
---|---|
x
|
Input tensor. |
Returns | |
---|---|
Output tensor, element-wise floor of x .
|