tensorflow :: ops :: MaxPool3D
#include <nn_ops.h>
入力に対して3Dmaxプーリングを実行します。
概要
引数:
- スコープ:スコープオブジェクト
- 入力:プールする形状
[batch, depth, rows, cols, channels]
テンソル。 - ksize:長さ5の1-Dテンソル。入力テンソルの各次元のウィンドウのサイズ。
ksize[0] = ksize[4] = 1
必要があります。 - ストライド:長さ5の1-Dテンソル。
input
各次元のスライディングウィンドウのストライド。strides[0] = strides[4] = 1
必要があります。 - パディング:使用するパディングアルゴリズムのタイプ。
オプションの属性(参照Attrs
):
- data_format:入力データと出力データのデータ形式。デフォルトの形式「NDHWC」では、データは[batch、in_depth、in_height、in_width、in_channels]の順序で保存されます。または、形式を「NCDHW」にすることもできます。データの保存順序は[batch、in_channels、in_depth、in_height、in_width]です。
戻り値:
-
Output
:プールされた最大出力テンソル。
コンストラクタとデストラクタ | |
---|---|
MaxPool3D (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding) | |
MaxPool3D (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding, const MaxPool3D::Attrs & attrs) |
パブリック属性 | |
---|---|
operation | |
output |
公の行事 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック静的関数 | |
---|---|
DataFormat (StringPiece x) |
構造体 | |
---|---|
tensorflow :: ops :: MaxPool3D :: Attrs | MaxPool3Dのオプションの属性セッター。 |
パブリック属性
操作
Operation operation
出力
::tensorflow::Output output
公の行事
MaxPool3D
MaxPool3D( const ::tensorflow::Scope & scope, ::tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding )
MaxPool3D
MaxPool3D( const ::tensorflow::Scope & scope, ::tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding, const MaxPool3D::Attrs & attrs )
ノード
::tensorflow::Node * node() const
operator :: tensorflow :: Input
operator::tensorflow::Input() const
operator :: tensorflow :: Output
operator::tensorflow::Output() const
パブリック静的関数
DataFormat
Attrs DataFormat( StringPiece x )