tf.math.floor
Возвращает элемент-по-элементу наибольшее целое число, не большее x.
tf.math.floor(
x, name=None
)
Использование в блокнотах
| Используется в учебниках |
|---|
Диапазон входных данных — (-inf, inf), а диапазон выходных данных состоит из всех целых значений.
Например:
x = tf.constant([1.3324, -1.5, 5.555, -2.532, 0.99, float("inf")])
tf.floor(x).numpy()
array([ 1., -2., 5., -3., 0., inf], dtype=float32)| Args | |
|---|---|
x | A Tensor. Must be one of the following types: bfloat16, half, float32, float64. |
name | Имя операции (необязательно). |
| Returns | |
|---|---|
A Tensor. Имеет тот же тип, что и x. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/math/floor