Atanh¶
バージョン名: Atanh-3
カテゴリー: 算術単項演算
簡単な説明: Atanh は、指定されたテンソルを使用して要素ごとの双曲線逆正接操作を実行します。
詳細な説明: Atanh は、次の数式に基づいて、指定された入力テンソルに対して要素ごとの双曲線逆正接操作を実行します。
浮動小数点タイプ入力:
\[a_{i} = atanh(a_{i})\]
符号あり整数タイプ入力:
\[a_{i} = (i <= -1) ? std::numeric_limits<T>::min() : (i >= 1) ? std::numeric_limits<T>::max() : atanh(a_{i})\]
符号なし整数タイプ入力:
\[a_{i} = (i > 0) ? std::numeric_limits<T>::max() : atanh(a_{i})\]
属性: Atanh 操作には属性がありません。
入力:
1: T タイプのテンソル。必須。
出力:
1: 入力テンソルに適用された要素ごとの atanh 操作の結果。T タイプのテンソルで、入力テンソルと同じ形状です。
タイプ:
T: サポートされている数値タイプ。
例:
<layer ... type="Atanh">
<input>
<port id="0">
<dim>256</dim>
<dim>56</dim>
</port>
</input>
<output>
<port id="1">
<dim>256</dim>
<dim>56</dim>
</port>
</output>
</layer>