Uses of Interface
org.deeplearning4j.nn.conf.InputPreProcessor
-
-
Uses of InputPreProcessor in org.deeplearning4j.nn.conf
Fields in org.deeplearning4j.nn.conf with type parameters of type InputPreProcessor Modifier and Type Field Description protected Map<String,InputPreProcessor>ComputationGraphConfiguration.GraphBuilder. inputPreProcessorsprotected Map<Integer,InputPreProcessor>MultiLayerConfiguration.Builder. inputPreProcessorsprotected Map<Integer,InputPreProcessor>MultiLayerConfiguration. inputPreProcessorsMethods in org.deeplearning4j.nn.conf that return InputPreProcessor Modifier and Type Method Description InputPreProcessorInputPreProcessor. clone()InputPreProcessorMultiLayerConfiguration. getInputPreProcess(int curr)Methods in org.deeplearning4j.nn.conf with parameters of type InputPreProcessor Modifier and Type Method Description ComputationGraphConfiguration.GraphBuilderComputationGraphConfiguration.GraphBuilder. addLayer(String layerName, Layer layer, InputPreProcessor preProcessor, String... layerInputs)Add a layer and anInputPreProcessor, with the specified name and specified inputs.ComputationGraphConfiguration.GraphBuilderComputationGraphConfiguration.GraphBuilder. appendLayer(String layerName, Layer layer, InputPreProcessor preProcessor)Add a layer and anInputPreProcessor, with the specified name and input from the last added layer/vertex.ComputationGraphConfiguration.GraphBuilderComputationGraphConfiguration.GraphBuilder. inputPreProcessor(String layer, InputPreProcessor processor)Specify the processors for a given layer These are used at each layer for doing things like normalization and shaping of input.
Note: preprocessors can also be defined using theComputationGraphConfiguration.GraphBuilder.addLayer(String, Layer, InputPreProcessor, String...)method.MultiLayerConfiguration.BuilderMultiLayerConfiguration.Builder. inputPreProcessor(Integer layer, InputPreProcessor processor)Specify the processors.NeuralNetConfiguration.ListBuilderNeuralNetConfiguration.ListBuilder. inputPreProcessor(Integer layer, InputPreProcessor processor)ComputationGraphConfiguration.GraphBuilderComputationGraphConfiguration.GraphBuilder. layer(String layerName, Layer layer, InputPreProcessor preProcessor, String... layerInputs)Add a layer and anInputPreProcessor, with the specified name and specified inputs.Method parameters in org.deeplearning4j.nn.conf with type arguments of type InputPreProcessor Modifier and Type Method Description MultiLayerConfiguration.BuilderMultiLayerConfiguration.Builder. inputPreProcessors(Map<Integer,InputPreProcessor> processors)NeuralNetConfiguration.ListBuilderNeuralNetConfiguration.ListBuilder. inputPreProcessors(Map<Integer,InputPreProcessor> processors) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.graph
Methods in org.deeplearning4j.nn.conf.graph that return InputPreProcessor Modifier and Type Method Description InputPreProcessorLayerVertex. getPreProcessor()Constructors in org.deeplearning4j.nn.conf.graph with parameters of type InputPreProcessor Constructor Description LayerVertex(NeuralNetConfiguration layerConf, InputPreProcessor preProcessor)PreprocessorVertex(InputPreProcessor preProcessor) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers
-
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.convolutional
Methods in org.deeplearning4j.nn.conf.layers.convolutional that return InputPreProcessor Modifier and Type Method Description InputPreProcessorCropping1D. getPreProcessorForInputType(InputType inputType)InputPreProcessorCropping2D. getPreProcessorForInputType(InputType inputType)InputPreProcessorCropping3D. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.misc
Methods in org.deeplearning4j.nn.conf.layers.misc that return InputPreProcessor Modifier and Type Method Description InputPreProcessorFrozenLayer. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.objdetect
Methods in org.deeplearning4j.nn.conf.layers.objdetect that return InputPreProcessor Modifier and Type Method Description InputPreProcessorYolo2OutputLayer. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.recurrent
Methods in org.deeplearning4j.nn.conf.layers.recurrent that return InputPreProcessor Modifier and Type Method Description InputPreProcessorBidirectional. getPreProcessorForInputType(InputType inputType)InputPreProcessorTimeDistributed. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.samediff
Methods in org.deeplearning4j.nn.conf.layers.samediff that return InputPreProcessor Modifier and Type Method Description InputPreProcessorAbstractSameDiffLayer. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.util
Methods in org.deeplearning4j.nn.conf.layers.util that return InputPreProcessor Modifier and Type Method Description InputPreProcessorMaskLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorMaskZeroLayer. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.layers.wrapper
Methods in org.deeplearning4j.nn.conf.layers.wrapper that return InputPreProcessor Modifier and Type Method Description InputPreProcessorBaseWrapperLayer. getPreProcessorForInputType(InputType inputType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.conf.preprocessor
Classes in org.deeplearning4j.nn.conf.preprocessor that implement InputPreProcessor Modifier and Type Class Description classBaseInputPreProcessorclassCnn3DToFeedForwardPreProcessorclassCnnToFeedForwardPreProcessorclassCnnToRnnPreProcessorclassComposableInputPreProcessorclassFeedForwardToCnn3DPreProcessorclassFeedForwardToCnnPreProcessorclassFeedForwardToRnnPreProcessorclassRnnToCnnPreProcessorclassRnnToFeedForwardPreProcessorConstructors in org.deeplearning4j.nn.conf.preprocessor with parameters of type InputPreProcessor Constructor Description ComposableInputPreProcessor(InputPreProcessor... inputPreProcessors) -
Uses of InputPreProcessor in org.deeplearning4j.nn.graph.vertex.impl
Constructors in org.deeplearning4j.nn.graph.vertex.impl with parameters of type InputPreProcessor Constructor Description LayerVertex(ComputationGraph graph, String name, int vertexIndex, Layer layer, InputPreProcessor layerPreProcessor, boolean outputVertex, DataType dataType)Create a network input vertex:LayerVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, Layer layer, InputPreProcessor layerPreProcessor, boolean outputVertex, DataType dataType)PreprocessorVertex(ComputationGraph graph, String name, int vertexIndex, InputPreProcessor preProcessor, DataType dataType)PreprocessorVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, InputPreProcessor preProcessor, DataType dataType) -
Uses of InputPreProcessor in org.deeplearning4j.nn.transferlearning
Methods in org.deeplearning4j.nn.transferlearning with parameters of type InputPreProcessor Modifier and Type Method Description TransferLearning.GraphBuilderTransferLearning.GraphBuilder. addLayer(String layerName, Layer layer, InputPreProcessor preProcessor, String... layerInputs)Add a layer with a specified preprocessorTransferLearning.BuilderTransferLearning.Builder. setInputPreProcessor(int layer, InputPreProcessor processor)Specify the preprocessor for the added layers for cases where they cannot be inferred automatically. -
Uses of InputPreProcessor in org.deeplearning4j.preprocessors
Classes in org.deeplearning4j.preprocessors that implement InputPreProcessor Modifier and Type Class Description classKerasFlattenRnnPreprocessorclassPermutePreprocessorclassReshapePreprocessor
-