Example usage for org.deeplearning4j.nn.conf.layers InputTypeUtil getPreprocessorForInputTypeRnnLayers

List of usage examples for org.deeplearning4j.nn.conf.layers InputTypeUtil getPreprocessorForInputTypeRnnLayers

Introduction

In this page you can find the example usage for org.deeplearning4j.nn.conf.layers InputTypeUtil getPreprocessorForInputTypeRnnLayers.

Prototype

public static InputPreProcessor getPreprocessorForInputTypeRnnLayers(InputType inputType, String layerName) 

Source Link

Usage

From source file:org.ensor.fftmusings.mdn.MixtureDensityRNNOutputLayer.java

License:Apache License

@Override
public InputPreProcessor getPreProcessorForInputType(InputType inputType) {
    return InputTypeUtil.getPreprocessorForInputTypeRnnLayers(inputType, getLayerName());
}