tensorflow :: ops :: MaxPool3DGrad
#include <nn_ops.h>
Calcola i gradienti della funzione di pooling massimo.
Sommario
Argomenti:
- scope: un oggetto Scope
- orig_input: il tensore di input originale.
- orig_output: il tensore di output originale.
- grad: output backprop della forma
[batch, depth, rows, cols, channels]
. - ksize: 1-D tensor of length 5. La dimensione della finestra per ogni dimensione del tensore di input. Deve avere
ksize[0] = ksize[4] = 1
. - falcate: tensore 1-D di lunghezza 5. Andatura della finestra scorrevole per ogni dimensione di
input
. Deve averestrides[0] = strides[4] = 1
. - padding: il tipo di algoritmo di riempimento da utilizzare.
Attributi opzionali (vedi Attrs
):
- data_format: il formato dei dati dei dati di input e output. Con il formato predefinito "NDHWC", i dati vengono memorizzati nell'ordine di: [batch, in_depth, in_height, in_width, in_channels]. In alternativa, il formato potrebbe essere "NCDHW", l'ordine di memorizzazione dei dati è: [batch, in_channels, in_depth, in_height, in_width].
Ritorna:
-
Output
: il tensore di output.
Costruttori e distruttori | |
---|---|
MaxPool3DGrad (const :: tensorflow::Scope & scope, :: tensorflow::Input orig_input, :: tensorflow::Input orig_output, :: tensorflow::Input grad, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding) | |
MaxPool3DGrad (const :: tensorflow::Scope & scope, :: tensorflow::Input orig_input, :: tensorflow::Input orig_output, :: tensorflow::Input grad, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding, const MaxPool3DGrad::Attrs & attrs) |
Attributi pubblici | |
---|---|
operation | |
output |
Funzioni pubbliche | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Funzioni statiche pubbliche | |
---|---|
DataFormat (StringPiece x) |
Structs | |
---|---|
tensorflow :: ops :: MaxPool3DGrad :: Attrs | Setter di attributi opzionali per MaxPool3DGrad . |
Attributi pubblici
operazione
Operation operation
produzione
::tensorflow::Output output
Funzioni pubbliche
MaxPool3DGrad
MaxPool3DGrad( const ::tensorflow::Scope & scope, ::tensorflow::Input orig_input, ::tensorflow::Input orig_output, ::tensorflow::Input grad, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding )
MaxPool3DGrad
MaxPool3DGrad( const ::tensorflow::Scope & scope, ::tensorflow::Input orig_input, ::tensorflow::Input orig_output, ::tensorflow::Input grad, const gtl::ArraySlice< int > & ksize, const gtl::ArraySlice< int > & strides, StringPiece padding, const MaxPool3DGrad::Attrs & attrs )
nodo
::tensorflow::Node * node() const
operator :: tensorflow :: Input
operator::tensorflow::Input() const
operator :: tensorflow :: Output
operator::tensorflow::Output() const
Funzioni statiche pubbliche
Formato dei dati
Attrs DataFormat( StringPiece x )