tf.keras.ops.absolute
Вычислить абсолютное значение поэлементно.
tf.keras.ops.absolute(
x
)
keras.ops.abs является сокращением для этой функции.
| Аргументы | |
|---|---|
x | Входной тензор. |
| Возвращает | |
|---|---|
Массив, содержащий абсолютное значение каждого элемента в x. |
Пример:
x = keras.ops.convert_to_tensor([-1.2, 1.2]) keras.ops.absolute(x) array([1.2, 1.2], dtype=float32)
© 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/keras/ops/absolute