Class RnnToCnnPreProcessor
- java.lang.Object
-
- org.deeplearning4j.nn.conf.preprocessor.RnnToCnnPreProcessor
-
- All Implemented Interfaces:
Serializable,Cloneable,InputPreProcessor
public class RnnToCnnPreProcessor extends Object implements InputPreProcessor
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RnnToCnnPreProcessor(int inputHeight, int inputWidth, int numChannels)RnnToCnnPreProcessor(int inputHeight, int inputWidth, int numChannels, RNNFormat rnnDataFormat)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description INDArraybackprop(INDArray output, int miniBatchSize, LayerWorkspaceMgr workspaceMgr)Reverse the preProcess during backprop.RnnToCnnPreProcessorclone()Pair<INDArray,MaskState>feedForwardMaskArray(INDArray maskArray, MaskState currentMaskState, int minibatchSize)InputTypegetOutputType(InputType inputType)For a given type of input to this preprocessor, what is the type of the output?INDArraypreProcess(INDArray input, int miniBatchSize, LayerWorkspaceMgr workspaceMgr)Pre preProcess input/activations for a multi layer network
-
-
-
Constructor Detail
-
RnnToCnnPreProcessor
public RnnToCnnPreProcessor(int inputHeight, int inputWidth, int numChannels, RNNFormat rnnDataFormat)
-
RnnToCnnPreProcessor
public RnnToCnnPreProcessor(int inputHeight, int inputWidth, int numChannels)
-
-
Method Detail
-
preProcess
public INDArray preProcess(INDArray input, int miniBatchSize, LayerWorkspaceMgr workspaceMgr)
Description copied from interface:InputPreProcessorPre preProcess input/activations for a multi layer network- Specified by:
preProcessin interfaceInputPreProcessor- Parameters:
input- the input to pre preProcessminiBatchSize- Minibatch sizeworkspaceMgr- Workspace manager- Returns:
- the processed input. Note that the returned array should be placed in the
ArrayType.ACTIVATIONSworkspace via the workspace manager
-
backprop
public INDArray backprop(INDArray output, int miniBatchSize, LayerWorkspaceMgr workspaceMgr)
Description copied from interface:InputPreProcessorReverse the preProcess during backprop. Process Gradient/epsilons before passing them to the layer below.- Specified by:
backpropin interfaceInputPreProcessor- Parameters:
output- which is a pair of the gradient and epsilonminiBatchSize- Minibatch sizeworkspaceMgr- Workspace manager- Returns:
- the reverse of the pre preProcess step (if any). Note that the returned array should be
placed in
ArrayType.ACTIVATION_GRADworkspace via the workspace manager
-
clone
public RnnToCnnPreProcessor clone()
- Specified by:
clonein interfaceInputPreProcessor- Overrides:
clonein classObject
-
getOutputType
public InputType getOutputType(InputType inputType)
Description copied from interface:InputPreProcessorFor a given type of input to this preprocessor, what is the type of the output?- Specified by:
getOutputTypein interfaceInputPreProcessor- Parameters:
inputType- Type of input for the preprocessor- Returns:
- Type of input after applying the preprocessor
-
feedForwardMaskArray
public Pair<INDArray,MaskState> feedForwardMaskArray(INDArray maskArray, MaskState currentMaskState, int minibatchSize)
- Specified by:
feedForwardMaskArrayin interfaceInputPreProcessor
-
-