テンソルフロー::作戦::パッドV2
#include <array_ops.h>
テンソルをパディングします。
まとめ
この操作は、指定したpaddings
とconstant_values
に従ってinput
パディングします。 paddings
、形状[Dn, 2]
の整数テンソルです。ここで、 n はinput
のランクです。 input
の各次元 D について、 paddings[D, 0]
その次元のinput
の内容の前に追加するパディング値の数を示し、 paddings[D, 1]
その次元のinput
の内容の後に追加するパディング値の数を示します。寸法。 constant_values
、 input
のパディングに使用する値を示すinput
と同じ型のスカラー テンソルです。
出力の各次元 D のパディングされたサイズは次のとおりです。
paddings(D, 0) + input.dim_size(D) + paddings(D, 1)
例えば:
# 't' is [[1, 1], [2, 2]] # 'paddings' is [[1, 1], [2, 2]] # 'constant_values' is 0 # rank of 't' is 2 pad(t, paddings) ==> [[0, 0, 0, 0, 0, 0] [0, 0, 1, 1, 0, 0] [0, 0, 2, 2, 0, 0] [0, 0, 0, 0, 0, 0]]
引数:
- スコープ:スコープオブジェクト
戻り値:
-
Output
: 出力テンソル。
コンストラクターとデストラクター | |
---|---|
PadV2 (const :: tensorflow::Scope & scope, :: tensorflow::Input input, :: tensorflow::Input paddings, :: tensorflow::Input constant_values) |
パブリック属性 | |
---|---|
operation | |
output |
公共機能 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック属性
手術
Operation operation
出力
::tensorflow::Output output
公共機能
パッドV2
PadV2( const ::tensorflow::Scope & scope, ::tensorflow::Input input, ::tensorflow::Input paddings, ::tensorflow::Input constant_values )
ノード
::tensorflow::Node * node() const
演算子::tensorflow::入力
operator::tensorflow::Input() const
演算子::tensorflow::出力
operator::tensorflow::Output() const