テンソルフロー::作戦::ボリュームパッチの抽出
#include <array_ops.h>
input
からpatches
を抽出し、「深度」出力次元に配置します。
まとめ
extract_image_patches
の 3D 拡張。
引数:
- スコープ:スコープオブジェクト
- 入力: 形状
[batch, in_planes, in_rows, in_cols, depth]
の 5 次元テンソル。 - ksizes:
input
の各次元のスライディング ウィンドウのサイズ。 - strides: 長さ 5 の 1-D。
input
内の 2 つの連続するパッチの中心の距離。[1, stride_planes, stride_rows, stride_cols, 1]
ある必要があります。 - padding: 使用するパディング アルゴリズムのタイプ。
サイズ関連の属性を次のように指定します。
ksizes = [1, ksize_planes, ksize_rows, ksize_cols, 1] strides = [1, stride_planes, strides_rows, strides_cols, 1]
戻り値:
-
Output
: 「深さ」次元でベクトル化されたサイズksize_planes x ksize_rows x ksize_cols x depth
のパッチを含む形状[batch, out_planes, out_rows, out_cols, ksize_planes * ksize_rows * ksize_cols * depth]
5 次元テンソル。out_planes
、out_rows
、およびout_cols
出力パッチの次元であることに注意してください。
コンストラクターとデストラクター | |
---|---|
ExtractVolumePatches (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksizes, const gtl::ArraySlice< int > & strides, StringPiece padding) |
パブリック属性 | |
---|---|
operation | |
patches |
公共機能 | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
パブリック属性
手術
Operation operation
パッチ
::tensorflow::Output patches
公共機能
ボリュームパッチの抽出
ExtractVolumePatches( const ::tensorflow::Scope & scope, ::tensorflow::Input input, const gtl::ArraySlice< int > & ksizes, const gtl::ArraySlice< int > & strides, StringPiece padding )
ノード
::tensorflow::Node * node() const
演算子::tensorflow::入力
operator::tensorflow::Input() const
演算子::tensorflow::出力
operator::tensorflow::Output() const