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. inputPreProcessors
protected Map<Integer,InputPreProcessor>
MultiLayerConfiguration.Builder. inputPreProcessors
protected Map<Integer,InputPreProcessor>
MultiLayerConfiguration. inputPreProcessors
Methods in org.deeplearning4j.nn.conf that return InputPreProcessor Modifier and Type Method Description InputPreProcessor
InputPreProcessor. clone()
InputPreProcessor
MultiLayerConfiguration. getInputPreProcess(int curr)
Methods in org.deeplearning4j.nn.conf with parameters of type InputPreProcessor Modifier and Type Method Description ComputationGraphConfiguration.GraphBuilder
ComputationGraphConfiguration.GraphBuilder. addLayer(String layerName, Layer layer, InputPreProcessor preProcessor, String... layerInputs)
Add a layer and anInputPreProcessor
, with the specified name and specified inputs.ComputationGraphConfiguration.GraphBuilder
ComputationGraphConfiguration.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.GraphBuilder
ComputationGraphConfiguration.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.Builder
MultiLayerConfiguration.Builder. inputPreProcessor(Integer layer, InputPreProcessor processor)
Specify the processors.NeuralNetConfiguration.ListBuilder
NeuralNetConfiguration.ListBuilder. inputPreProcessor(Integer layer, InputPreProcessor processor)
ComputationGraphConfiguration.GraphBuilder
ComputationGraphConfiguration.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.Builder
MultiLayerConfiguration.Builder. inputPreProcessors(Map<Integer,InputPreProcessor> processors)
NeuralNetConfiguration.ListBuilder
NeuralNetConfiguration.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 InputPreProcessor
LayerVertex. 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 InputPreProcessor
Cropping1D. getPreProcessorForInputType(InputType inputType)
InputPreProcessor
Cropping2D. getPreProcessorForInputType(InputType inputType)
InputPreProcessor
Cropping3D. 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 InputPreProcessor
FrozenLayer. 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 InputPreProcessor
Yolo2OutputLayer. 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 InputPreProcessor
Bidirectional. getPreProcessorForInputType(InputType inputType)
InputPreProcessor
TimeDistributed. 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 InputPreProcessor
AbstractSameDiffLayer. 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 InputPreProcessor
MaskLayer. getPreProcessorForInputType(InputType inputType)
InputPreProcessor
MaskZeroLayer. 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 InputPreProcessor
BaseWrapperLayer. 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 class
BaseInputPreProcessor
class
Cnn3DToFeedForwardPreProcessor
class
CnnToFeedForwardPreProcessor
class
CnnToRnnPreProcessor
class
ComposableInputPreProcessor
class
FeedForwardToCnn3DPreProcessor
class
FeedForwardToCnnPreProcessor
class
FeedForwardToRnnPreProcessor
class
RnnToCnnPreProcessor
class
RnnToFeedForwardPreProcessor
Constructors 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.GraphBuilder
TransferLearning.GraphBuilder. addLayer(String layerName, Layer layer, InputPreProcessor preProcessor, String... layerInputs)
Add a layer with a specified preprocessorTransferLearning.Builder
TransferLearning.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 class
KerasFlattenRnnPreprocessor
class
PermutePreprocessor
class
ReshapePreprocessor
-