Tensorflow :: ops :: AvgPool3D
#include <nn_ops.h>
Führt ein 3D-Durchschnittspooling für die Eingabe durch.
Zusammenfassung
Argumente:
- scope: Ein Scope- Objekt
- Eingabe: Form
[batch, depth, rows, cols, channels]
Tensor, über den[batch, depth, rows, cols, channels]
. - ksize: 1-D-Tensor der Länge 5. Die Größe des Fensters für jede Dimension des Eingangstensors. Muss
ksize[0] = ksize[4] = 1
. - Schritte: 1-D-Tensor der Länge 5. Der Schritt des Schiebefensters für jede
input
. Mussstrides[0] = strides[4] = 1
. - padding: Die Art des zu verwendenden Auffüllalgorithmus.
Optionale Attribute (siehe Attrs
):
- Datenformat: Das Datenformat der Eingabe- und Ausgabedaten. Beim Standardformat "NDHWC" werden die Daten in der folgenden Reihenfolge gespeichert: [Batch, In_Tiefe, In_Höhe, In_Breite, In_Kanäle]. Alternativ könnte das Format "NCDHW" sein, die Datenspeicherreihenfolge lautet: [Batch, in_channels, in_depth, in_height, in_width].
Kehrt zurück:
-
Output
: Der durchschnittliche gepoolte Ausgangstensor.
Konstruktoren und Destruktoren | |
---|---|
AvgPool3D (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding) | |
AvgPool3D (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding, const AvgPool3D::Attrs & attrs) |
Öffentliche Attribute | |
---|---|
operation | |
output |
Öffentliche Funktionen | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Öffentliche statische Funktionen | |
---|---|
DataFormat (StringPiece x) |
Strukturen | |
---|---|
tensorflow :: ops :: AvgPool3D :: Attrs | Optionale Attributsetzer für AvgPool3D . |
Öffentliche Attribute
Operation
Operation operation
Ausgabe
::tensorflow::Output output
Öffentliche Funktionen
AvgPool3D
AvgPool3D( const ::tensorflow::Scope & scope, ::tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding )
AvgPool3D
AvgPool3D( const ::tensorflow::Scope & scope, ::tensorflow::Input input, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding, const AvgPool3D::Attrs & attrs )
Knoten
::tensorflow::Node * node() const
operator :: tensorflow :: Input
operator::tensorflow::Input() const
operator :: tensorflow :: Output
operator::tensorflow::Output() const
Öffentliche statische Funktionen
Datei Format
Attrs DataFormat( StringPiece x )