Cosh¶
バージョン名: Cosh-1
カテゴリー: 算術単項演算
簡単な説明: Cosh は、指定された入力テンソルに対して要素ごとの双曲線コサイン操作を実行します。
詳細な説明: Cosh は、次の数式に基づいて、指定された入力テンソルに対して要素ごとの双曲線余弦 (cosh) 操作を実行します。
\[a_{i} = cosh(a_{i})\]
属性: Cosh 操作には属性がありません。
入力:
1: タイプ T の任意の形状のテンソル。必須。
出力:
1: 要素ごとの Cosh 操作の結果。T タイプのテンソルで、入力テンソルと同じ形状です。
タイプ:
T: 任意の数値タイプ。
例:
<layer ... type="Cosh">
<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>