Spec-Zone.ru › TensorFlow C++

tensorflow::ops::CheckNumerics

#include <array_ops.h>

Проверяет тензор на наличие значений NaN и Inf.

Краткое описание

При выполнении, сообщает об ошибке InvalidArgument, если в tensor есть значения, которые не являются числами (NaN) или бесконечностью (Inf). В противном случае возвращает входной тензор.

Пример использования:

a = tf.Variable(1.0)
tf.debugging.check_numerics(a, message='')
b = tf.Variable(np.nan)
try:
  tf.debugging.check_numerics(b, message='Checking b')
except Exception as e:
  assert "Checking b : Tensor had NaN values" in e.message
c = tf.Variable(np.inf)
try:
  tf.debugging.check_numerics(c, message='Checking c')
except Exception as e:
  assert "Checking c : Tensor had Inf values" in e.message

Аргументы:

  • scope: Объект Scope
  • message: Префикс сообщения об ошибке.

Возвращаемое значение:

  • Output: Результирующий тензор.
Конструкторы и деструкторы
CheckNumerics(const ::tensorflow::Scope & scope, ::tensorflow::Input tensor, StringPiece message)
Общедоступные атрибуты
operation
Operation
output
::tensorflow::Output
Общедоступные функции
node() const
::tensorflow::Node *
operator::tensorflow::Input() const
operator::tensorflow::Output() const

Общедоступные атрибуты

operation

Operation operation

output

::tensorflow::Output output

Общедоступные функции

CheckNumerics

 CheckNumerics(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input tensor,
  StringPiece message
)

узел

::tensorflow::Node * node() const 

operator::tensorflow::Input

operator::tensorflow::Input() const 

operator::tensorflow::Output

operator::tensorflow::Output() const 

© 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/cc/class/tensorflow/ops/check-numerics

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API