テンソルフロー::作戦::アタン

#include <math_ops.h>

x の逆双曲線正接を要素ごとに計算します。

まとめ

入力テンソルを指定すると、この関数はテンソル内のすべての要素の逆双曲線正接を計算します。入力範囲は[-1,1] 、出力範囲は[-inf, inf]です。入力が-1の場合、出力は-infになり、入力が1の場合、出力はinfになります。範囲外の値は出力としてnanを持ちます。

  x = tf.constant([-float("inf"), -1, -0.5, 1, 0, 0.5, 10, float("inf")])
  tf.math.atanh(x) ==> [nan -inf -0.54930615 inf  0. 0.54930615 nan nan]
  

引数:

戻り値:

コンストラクターとデストラクター

Atanh (const :: tensorflow::Scope & scope, :: tensorflow::Input x)

パブリック属性

operation
y

公共機能

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

パブリック属性

手術

Operation operation

y

::tensorflow::Output y

公共機能

アタン

 Atanh(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x
)

ノード

::tensorflow::Node * node() const 

演算子::tensorflow::入力

 operator::tensorflow::Input() const 

演算子::tensorflow::出力

 operator::tensorflow::Output() const