テンソルフロー::作戦:: Conv2DBackpropInput::属性
#include <nn_ops.h>
Conv2DBackpropInputのオプションの属性セッター。
まとめ
パブリック属性 | |
---|---|
data_format_ = "NHWC" | StringPiece |
dilations_ = Default_dilations() | gtl::ArraySlice< int > |
explicit_paddings_ = {} | gtl::ArraySlice< int > |
use_cudnn_on_gpu_ = true | bool |
公共機能 | |
---|---|
DataFormat (StringPiece x) | TF_MUST_USE_RESULT Attrs 入出力データのデータ形式を指定します。 |
Dilations (const gtl::ArraySlice< int > & x) | TF_MUST_USE_RESULT Attrs 長さ 4 の 1 次元テンソル。 |
ExplicitPaddings (const gtl::ArraySlice< int > & x) | TF_MUST_USE_RESULT Attrs padding が"EXPLICIT" の場合、明示的なパディング量のリスト。 |
UseCudnnOnGpu (bool x) | TF_MUST_USE_RESULT Attrs デフォルトは true です。 |
パブリック属性
データ形式_
StringPiece tensorflow::ops::Conv2DBackpropInput::Attrs::data_format_ = "NHWC"
拡張_
gtl::ArraySlice< int > tensorflow::ops::Conv2DBackpropInput::Attrs::dilations_ = Default_dilations()
明示的なパディング_
gtl::ArraySlice< int > tensorflow::ops::Conv2DBackpropInput::Attrs::explicit_paddings_ = {}
use_cudnn_on_gpu_
bool tensorflow::ops::Conv2DBackpropInput::Attrs::use_cudnn_on_gpu_ = true
公共機能
データ形式
TF_MUST_USE_RESULT Attrs tensorflow::ops::Conv2DBackpropInput::Attrs::DataFormat( StringPiece x )
入出力データのデータ形式を指定します。
デフォルトの形式「NHWC」では、[batch, in_height, in_width, in_channels] の順にデータが格納されます。あるいは、形式を「NCHW」、つまりデータ保存順序を [batch、in_channels、in_height、in_width] にすることもできます。
デフォルトは「NHWC」
拡張
TF_MUST_USE_RESULT Attrs tensorflow::ops::Conv2DBackpropInput::Attrs::Dilations( const gtl::ArraySlice< int > & x )
長さ 4 の 1 次元テンソル。
input
の各次元の膨張係数。 k > 1 に設定すると、その次元の各フィルター要素間に k-1 個のスキップされたセルが存在します。ディメンションの順序はdata_format
の値によって決まります。詳細については上記を参照してください。バッチ内の膨張と深さの寸法は 1 である必要があります。
デフォルトは [1, 1, 1, 1]
明示的なパディング
TF_MUST_USE_RESULT Attrs tensorflow::ops::Conv2DBackpropInput::Attrs::ExplicitPaddings( const gtl::ArraySlice< int > & x )
padding
が"EXPLICIT"
の場合、明示的なパディング量のリスト。
i 番目の次元の場合、次元の前後に挿入されるパディングの量は、それぞれexplicit_paddings[2 * i]
とexplicit_paddings[2 * i + 1]
です。 padding
"EXPLICIT"
でない場合、 explicit_paddings
空でなければなりません。
デフォルトは []
CudnnOnGPU を使用する
TF_MUST_USE_RESULT Attrs tensorflow::ops::Conv2DBackpropInput::Attrs::UseCudnnOnGpu( bool x )
デフォルトは true です。