Uses of Class
org.deeplearning4j.nn.conf.inputs.InputType
-
-
Uses of InputType in org.deeplearning4j.nn.conf
Fields in org.deeplearning4j.nn.conf declared as InputType Modifier and Type Field Description protected InputTypeMultiLayerConfiguration.Builder. inputTypeFields in org.deeplearning4j.nn.conf with type parameters of type InputType Modifier and Type Field Description protected List<InputType>ComputationGraphConfiguration.GraphBuilder. networkInputTypesMethods in org.deeplearning4j.nn.conf that return InputType Modifier and Type Method Description InputTypeInputPreProcessor. getOutputType(InputType inputType)For a given type of input to this preprocessor, what is the type of the output?Methods in org.deeplearning4j.nn.conf that return types with arguments of type InputType Modifier and Type Method Description Map<String,InputType>ComputationGraphConfiguration. getLayerActivationTypes(boolean addPreprocIfNecessary, boolean overrideInputs, InputType... inputTypes)For the given input shape/type for the network, return a map of activation sizes for each layer and vertex in the graph.Map<String,InputType>ComputationGraphConfiguration. getLayerActivationTypes(boolean addPreprocIfNecessary, InputType... inputTypes)For the given input shape/type for the network, return a map of activation sizes for each layer and vertex in the graph.Map<String,InputType>ComputationGraphConfiguration. getLayerActivationTypes(InputType... inputTypes)For the given input shape/type for the network, return a map of activation sizes for each layer and vertex in the graph.Map<String,InputType>ComputationGraphConfiguration.GraphBuilder. getLayerActivationTypes()For the (perhaps partially constructed) network configuration, return a map of activation sizes for each layer and vertex in the graph.
Note 1: The network configuration may be incomplete, but the inputs have been added to the layer already.
Note 2: To use this method, the network input types must have been set usingComputationGraphConfiguration.GraphBuilder.setInputTypes(InputType...)firstList<InputType>MultiLayerConfiguration. getLayerActivationTypes(@NonNull InputType inputType)For the given input shape/type for the network, return a list of activation sizes for each layer in the network.
i.e., list.get(i) is the output activation sizes for layer iList<InputType>NeuralNetConfiguration.ListBuilder. getLayerActivationTypes()For the (perhaps partially constructed) network configuration, return a list of activation sizes for each layer in the network.
Note: To use this method, the network input type must have been set usingNeuralNetConfiguration.ListBuilder.setInputType(InputType)firstMethods in org.deeplearning4j.nn.conf with parameters of type InputType Modifier and Type Method Description voidComputationGraphConfiguration. addPreProcessors(boolean addPreprocIfNecessary, boolean forceOverrideInputs, InputType... inputTypes)Add preprocessors automatically, given the specified types of inputs for the network.voidComputationGraphConfiguration. addPreProcessors(boolean forceOverrideInputs, InputType... inputTypes)Add preprocessors automatically, given the specified types of inputs for the network.voidComputationGraphConfiguration. addPreProcessors(InputType... inputTypes)Add preprocessors automatically, given the specified types of inputs for the network.Map<String,InputType>ComputationGraphConfiguration. getLayerActivationTypes(boolean addPreprocIfNecessary, boolean overrideInputs, InputType... inputTypes)For the given input shape/type for the network, return a map of activation sizes for each layer and vertex in the graph.Map<String,InputType>ComputationGraphConfiguration. getLayerActivationTypes(boolean addPreprocIfNecessary, InputType... inputTypes)For the given input shape/type for the network, return a map of activation sizes for each layer and vertex in the graph.Map<String,InputType>ComputationGraphConfiguration. getLayerActivationTypes(InputType... inputTypes)For the given input shape/type for the network, return a map of activation sizes for each layer and vertex in the graph.List<InputType>MultiLayerConfiguration. getLayerActivationTypes(@NonNull InputType inputType)For the given input shape/type for the network, return a list of activation sizes for each layer in the network.
i.e., list.get(i) is the output activation sizes for layer iNetworkMemoryReportComputationGraphConfiguration. getMemoryReport(InputType... inputTypes)Get aMemoryReportfor the given computation graph configuration.NetworkMemoryReportMultiLayerConfiguration. getMemoryReport(InputType inputType)Get aMemoryReportfor the given MultiLayerConfiguration.InputTypeInputPreProcessor. getOutputType(InputType inputType)For a given type of input to this preprocessor, what is the type of the output?MultiLayerConfiguration.BuilderMultiLayerConfiguration.Builder. setInputType(InputType inputType)NeuralNetConfiguration.ListBuilderNeuralNetConfiguration.ListBuilder. setInputType(InputType inputType)ComputationGraphConfiguration.GraphBuilderComputationGraphConfiguration.GraphBuilder. setInputTypes(InputType... inputTypes)Specify the types of inputs to the network, so that:
(a) preprocessors can be automatically added, and
(b) the nIns (input size) for each layer can be automatically calculated and set
The order here is the same order as .addInputs(). -
Uses of InputType in org.deeplearning4j.nn.conf.graph
Methods in org.deeplearning4j.nn.conf.graph that return InputType Modifier and Type Method Description InputTypeAttentionVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeElementWiseVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeFrozenVertex. getOutputType(int layerIndex, InputType... vertexInputs)abstract InputTypeGraphVertex. getOutputType(int layerIndex, InputType... vertexInputs)Determine the type of output for this GraphVertex, given the specified inputs.InputTypeL2NormalizeVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeL2Vertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeLayerVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeMergeVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypePoolHelperVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypePreprocessorVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeReshapeVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeScaleVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeShiftVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeStackVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeSubsetVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeUnstackVertex. getOutputType(int layerIndex, InputType... vertexInputs)Methods in org.deeplearning4j.nn.conf.graph with parameters of type InputType Modifier and Type Method Description MemoryReportElementWiseVertex. getMemoryReport(InputType... inputTypes)MemoryReportFrozenVertex. getMemoryReport(InputType... inputTypes)abstract MemoryReportGraphVertex. getMemoryReport(InputType... inputTypes)This is a report of the estimated memory consumption for the given vertexMemoryReportL2NormalizeVertex. getMemoryReport(InputType... inputTypes)MemoryReportL2Vertex. getMemoryReport(InputType... inputTypes)MemoryReportLayerVertex. getMemoryReport(InputType... inputTypes)MemoryReportMergeVertex. getMemoryReport(InputType... inputTypes)MemoryReportPoolHelperVertex. getMemoryReport(InputType... inputTypes)MemoryReportPreprocessorVertex. getMemoryReport(InputType... inputTypes)MemoryReportReshapeVertex. getMemoryReport(InputType... inputTypes)MemoryReportScaleVertex. getMemoryReport(InputType... inputTypes)MemoryReportShiftVertex. getMemoryReport(InputType... inputTypes)MemoryReportStackVertex. getMemoryReport(InputType... inputTypes)MemoryReportSubsetVertex. getMemoryReport(InputType... inputTypes)MemoryReportUnstackVertex. getMemoryReport(InputType... inputTypes)InputTypeAttentionVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeElementWiseVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeFrozenVertex. getOutputType(int layerIndex, InputType... vertexInputs)abstract InputTypeGraphVertex. getOutputType(int layerIndex, InputType... vertexInputs)Determine the type of output for this GraphVertex, given the specified inputs.InputTypeL2NormalizeVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeL2Vertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeLayerVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeMergeVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypePoolHelperVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypePreprocessorVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeReshapeVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeScaleVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeShiftVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeStackVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeSubsetVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeUnstackVertex. getOutputType(int layerIndex, InputType... vertexInputs) -
Uses of InputType in org.deeplearning4j.nn.conf.graph.rnn
Methods in org.deeplearning4j.nn.conf.graph.rnn that return InputType Modifier and Type Method Description InputTypeDuplicateToTimeSeriesVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeLastTimeStepVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeReverseTimeSeriesVertex. getOutputType(int layerIndex, InputType... vertexInputs)Methods in org.deeplearning4j.nn.conf.graph.rnn with parameters of type InputType Modifier and Type Method Description MemoryReportDuplicateToTimeSeriesVertex. getMemoryReport(InputType... inputTypes)MemoryReportLastTimeStepVertex. getMemoryReport(InputType... inputTypes)MemoryReportReverseTimeSeriesVertex. getMemoryReport(InputType... inputTypes)InputTypeDuplicateToTimeSeriesVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeLastTimeStepVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputTypeReverseTimeSeriesVertex. getOutputType(int layerIndex, InputType... vertexInputs) -
Uses of InputType in org.deeplearning4j.nn.conf.inputs
Subclasses of InputType in org.deeplearning4j.nn.conf.inputs Modifier and Type Class Description static classInputType.InputTypeConvolutionalstatic classInputType.InputTypeConvolutional3Dstatic classInputType.InputTypeConvolutionalFlatstatic classInputType.InputTypeFeedForwardstatic classInputType.InputTypeRecurrentMethods in org.deeplearning4j.nn.conf.inputs that return InputType Modifier and Type Method Description static InputTypeInputType. convolutional(long height, long width, long depth)Input type for convolutional (CNN) data, that is 4d with shape [miniBatchSize, channels, height, width].static InputTypeInputType. convolutional(long height, long width, long depth, CNN2DFormat format)static InputTypeInputType. convolutional3D(long depth, long height, long width, long channels)static InputTypeInputType. convolutional3D(Convolution3D.DataFormat dataFormat, long depth, long height, long width, long channels)Input type for 3D convolutional (CNN3D) 5d data:
If NDHWC format [miniBatchSize, depth, height, width, channels]
If NDCWHstatic InputTypeInputType. convolutionalFlat(long height, long width, long depth)Input type for convolutional (CNN) data, where the data is in flattened (row vector) format.static InputTypeInputType. feedForward(long size)InputType for feed forward network datastatic InputTypeInputType. feedForward(long size, DataFormat timeDistributedFormat)InputTypeInputType.InputTypeConvolutionalFlat. getUnflattenedType()static InputTypeInputType. inferInputType(INDArray inputArray)static InputType[]InputType. inferInputTypes(INDArray... inputArrays)static InputTypeInputType. recurrent(long size)InputType for recurrent neural network (time series) datastatic InputTypeInputType. recurrent(long size, long timeSeriesLength)InputType for recurrent neural network (time series) datastatic InputTypeInputType. recurrent(long size, long timeSeriesLength, RNNFormat format)static InputTypeInputType. recurrent(long size, RNNFormat format) -
Uses of InputType in org.deeplearning4j.nn.conf.layers
Methods in org.deeplearning4j.nn.conf.layers that return InputType Modifier and Type Method Description InputTypeActivationLayer. getOutputType(int layerIndex, InputType inputType)InputTypeBaseRecurrentLayer. getOutputType(int layerIndex, InputType inputType)InputTypeBatchNormalization. getOutputType(int layerIndex, InputType inputType)InputTypeCapsuleLayer. getOutputType(int layerIndex, InputType inputType)InputTypeCapsuleStrengthLayer. getOutputType(int layerIndex, InputType inputType)InputTypeCnn3DLossLayer. getOutputType(int layerIndex, InputType inputType)InputTypeCnnLossLayer. getOutputType(int layerIndex, InputType inputType)InputTypeConvolution1DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeConvolution3D. getOutputType(int layerIndex, InputType inputType)InputTypeConvolutionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeDeconvolution2D. getOutputType(int layerIndex, InputType inputType)InputTypeDeconvolution3D. getOutputType(int layerIndex, InputType inputType)InputTypeDepthwiseConvolution2D. getOutputType(int layerIndex, InputType inputType)InputTypeDropoutLayer. getOutputType(int layerIndex, InputType inputType)InputTypeEmbeddingSequenceLayer. getOutputType(int layerIndex, InputType inputType)InputTypeFeedForwardLayer. getOutputType(int layerIndex, InputType inputType)InputTypeGlobalPoolingLayer. getOutputType(int layerIndex, InputType inputType)abstract InputTypeLayer. getOutputType(int layerIndex, InputType inputType)For a given type of input to this layer, what is the type of the output?InputTypeLearnedSelfAttentionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeLocallyConnected1D. getOutputType(int layerIndex, InputType inputType)InputTypeLocallyConnected2D. getOutputType(int layerIndex, InputType inputType)InputTypeLocalResponseNormalization. getOutputType(int layerIndex, InputType inputType)InputTypePReLULayer. getOutputType(int layerIndex, InputType inputType)InputTypePrimaryCapsules. getOutputType(int layerIndex, InputType inputType)InputTypeRecurrentAttentionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeRnnLossLayer. getOutputType(int layerIndex, InputType inputType)InputTypeRnnOutputLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSelfAttentionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSeparableConvolution2D. getOutputType(int layerIndex, InputType inputType)InputTypeSpaceToBatchLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSpaceToDepthLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSubsampling1DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSubsampling3DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSubsamplingLayer. getOutputType(int layerIndex, InputType inputType)InputTypeUpsampling1D. getOutputType(int layerIndex, InputType inputType)InputTypeUpsampling2D. getOutputType(int layerIndex, InputType inputType)InputTypeUpsampling3D. getOutputType(int layerIndex, InputType inputType)InputTypeZeroPadding1DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeZeroPadding3DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeZeroPaddingLayer. getOutputType(int layerIndex, InputType inputType)static InputTypeInputTypeUtil. getOutputTypeCnn1DLayers(InputType inputType, int kH, int sH, int padH, int dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeCnn3DLayers(InputType inputType, Convolution3D.DataFormat dataFormat, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputChannels, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeCnnLayers(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeCnnLayers(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, CNN2DFormat format, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeDeconv3dLayer(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, Convolution3D.DataFormat dataFormat, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeDeconvLayer(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)Methods in org.deeplearning4j.nn.conf.layers with parameters of type InputType Modifier and Type Method Description static voidInputTypeUtil. convertMultipleTypes(InputType[] vertexInputs)Convert multiple types when multiple are found.LayerMemoryReportActivationLayer. getMemoryReport(InputType inputType)LayerMemoryReportAutoEncoder. getMemoryReport(InputType inputType)LayerMemoryReportBaseOutputLayer. getMemoryReport(InputType inputType)LayerMemoryReportBatchNormalization. getMemoryReport(InputType inputType)LayerMemoryReportCenterLossOutputLayer. getMemoryReport(InputType inputType)LayerMemoryReportCnn3DLossLayer. getMemoryReport(InputType inputType)LayerMemoryReportCnnLossLayer. getMemoryReport(InputType inputType)LayerMemoryReportConvolutionLayer. getMemoryReport(InputType inputType)LayerMemoryReportDenseLayer. getMemoryReport(InputType inputType)LayerMemoryReportDropoutLayer. getMemoryReport(InputType inputType)LayerMemoryReportEmbeddingLayer. getMemoryReport(InputType inputType)LayerMemoryReportEmbeddingSequenceLayer. getMemoryReport(InputType inputType)LayerMemoryReportGlobalPoolingLayer. getMemoryReport(InputType inputType)LayerMemoryReportGravesBidirectionalLSTM. getMemoryReport(InputType inputType)Deprecated.LayerMemoryReportGravesLSTM. getMemoryReport(InputType inputType)Deprecated.abstract LayerMemoryReportLayer. getMemoryReport(InputType inputType)This is a report of the estimated memory consumption for the given layerLayerMemoryReportLocalResponseNormalization. getMemoryReport(InputType inputType)LayerMemoryReportLossLayer. getMemoryReport(InputType inputType)LayerMemoryReportLSTM. getMemoryReport(InputType inputType)LayerMemoryReportPReLULayer. getMemoryReport(InputType inputType)LayerMemoryReportRnnLossLayer. getMemoryReport(InputType inputType)LayerMemoryReportSpaceToBatchLayer. getMemoryReport(InputType inputType)LayerMemoryReportSpaceToDepthLayer. getMemoryReport(InputType inputType)LayerMemoryReportSubsampling3DLayer. getMemoryReport(InputType inputType)LayerMemoryReportSubsamplingLayer. getMemoryReport(InputType inputType)LayerMemoryReportUpsampling1D. getMemoryReport(InputType inputType)LayerMemoryReportUpsampling2D. getMemoryReport(InputType inputType)LayerMemoryReportUpsampling3D. getMemoryReport(InputType inputType)LayerMemoryReportZeroPadding1DLayer. getMemoryReport(InputType inputType)LayerMemoryReportZeroPadding3DLayer. getMemoryReport(InputType inputType)LayerMemoryReportZeroPaddingLayer. getMemoryReport(InputType inputType)InputTypeActivationLayer. getOutputType(int layerIndex, InputType inputType)InputTypeBaseRecurrentLayer. getOutputType(int layerIndex, InputType inputType)InputTypeBatchNormalization. getOutputType(int layerIndex, InputType inputType)InputTypeCapsuleLayer. getOutputType(int layerIndex, InputType inputType)InputTypeCapsuleStrengthLayer. getOutputType(int layerIndex, InputType inputType)InputTypeCnn3DLossLayer. getOutputType(int layerIndex, InputType inputType)InputTypeCnnLossLayer. getOutputType(int layerIndex, InputType inputType)InputTypeConvolution1DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeConvolution3D. getOutputType(int layerIndex, InputType inputType)InputTypeConvolutionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeDeconvolution2D. getOutputType(int layerIndex, InputType inputType)InputTypeDeconvolution3D. getOutputType(int layerIndex, InputType inputType)InputTypeDepthwiseConvolution2D. getOutputType(int layerIndex, InputType inputType)InputTypeDropoutLayer. getOutputType(int layerIndex, InputType inputType)InputTypeEmbeddingSequenceLayer. getOutputType(int layerIndex, InputType inputType)InputTypeFeedForwardLayer. getOutputType(int layerIndex, InputType inputType)InputTypeGlobalPoolingLayer. getOutputType(int layerIndex, InputType inputType)abstract InputTypeLayer. getOutputType(int layerIndex, InputType inputType)For a given type of input to this layer, what is the type of the output?InputTypeLearnedSelfAttentionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeLocallyConnected1D. getOutputType(int layerIndex, InputType inputType)InputTypeLocallyConnected2D. getOutputType(int layerIndex, InputType inputType)InputTypeLocalResponseNormalization. getOutputType(int layerIndex, InputType inputType)InputTypePReLULayer. getOutputType(int layerIndex, InputType inputType)InputTypePrimaryCapsules. getOutputType(int layerIndex, InputType inputType)InputTypeRecurrentAttentionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeRnnLossLayer. getOutputType(int layerIndex, InputType inputType)InputTypeRnnOutputLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSelfAttentionLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSeparableConvolution2D. getOutputType(int layerIndex, InputType inputType)InputTypeSpaceToBatchLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSpaceToDepthLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSubsampling1DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSubsampling3DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSubsamplingLayer. getOutputType(int layerIndex, InputType inputType)InputTypeUpsampling1D. getOutputType(int layerIndex, InputType inputType)InputTypeUpsampling2D. getOutputType(int layerIndex, InputType inputType)InputTypeUpsampling3D. getOutputType(int layerIndex, InputType inputType)InputTypeZeroPadding1DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeZeroPadding3DLayer. getOutputType(int layerIndex, InputType inputType)InputTypeZeroPaddingLayer. getOutputType(int layerIndex, InputType inputType)static InputTypeInputTypeUtil. getOutputTypeCnn1DLayers(InputType inputType, int kH, int sH, int padH, int dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeCnn3DLayers(InputType inputType, Convolution3D.DataFormat dataFormat, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputChannels, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeCnnLayers(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeCnnLayers(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, CNN2DFormat format, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeDeconv3dLayer(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, Convolution3D.DataFormat dataFormat, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)static InputTypeInputTypeUtil. getOutputTypeDeconvLayer(InputType inputType, int[] kernelSize, int[] stride, int[] padding, int[] dilation, ConvolutionMode convolutionMode, long outputDepth, long layerIdx, String layerName, Class<?> layerClass)InputPreProcessorActivationLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorBaseRecurrentLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorBaseUpsamplingLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorBatchNormalization. getPreProcessorForInputType(InputType inputType)InputPreProcessorCnn3DLossLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorCnnLossLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorConvolution1DLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorConvolution3D. getPreProcessorForInputType(InputType inputType)InputPreProcessorConvolutionLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorDeconvolution3D. getPreProcessorForInputType(InputType inputType)InputPreProcessorDropoutLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorEmbeddingSequenceLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorFeedForwardLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorGlobalPoolingLayer. getPreProcessorForInputType(InputType inputType)abstract InputPreProcessorLayer. getPreProcessorForInputType(InputType inputType)For the given type of input to this layer, what preprocessor (if any) is required?
Returns null if no preprocessor is required, otherwise returns an appropriateInputPreProcessorfor this layer, such as aCnnToFeedForwardPreProcessorInputPreProcessorLearnedSelfAttentionLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorLocallyConnected1D. getPreProcessorForInputType(InputType inputType)InputPreProcessorLocallyConnected2D. getPreProcessorForInputType(InputType inputType)InputPreProcessorLocalResponseNormalization. getPreProcessorForInputType(InputType inputType)InputPreProcessorPReLULayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorRecurrentAttentionLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorRnnLossLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorRnnOutputLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorSelfAttentionLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorSpaceToBatchLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorSpaceToDepthLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorSubsampling1DLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorSubsampling3DLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorSubsamplingLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorUpsampling1D. getPreProcessorForInputType(InputType inputType)InputPreProcessorUpsampling2D. getPreProcessorForInputType(InputType inputType)InputPreProcessorUpsampling3D. getPreProcessorForInputType(InputType inputType)InputPreProcessorZeroPadding1DLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorZeroPadding3DLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorZeroPaddingLayer. getPreProcessorForInputType(InputType inputType)static InputPreProcessorInputTypeUtil. getPreProcessorForInputTypeCnn3DLayers(InputType inputType, String layerName)Utility method for determining the appropriate preprocessor for CNN layers, such asConvolutionLayerandSubsamplingLayerstatic InputPreProcessorInputTypeUtil. getPreProcessorForInputTypeCnnLayers(InputType inputType, String layerName)Utility method for determining the appropriate preprocessor for CNN layers, such asConvolutionLayerandSubsamplingLayerstatic InputPreProcessorInputTypeUtil. getPreprocessorForInputTypeRnnLayers(InputType inputType, RNNFormat rnnDataFormat, String layerName)voidActivationLayer. setNIn(InputType inputType, boolean override)voidBaseRecurrentLayer. setNIn(InputType inputType, boolean override)voidBatchNormalization. setNIn(InputType inputType, boolean override)voidCapsuleLayer. setNIn(InputType inputType, boolean override)voidCnn3DLossLayer. setNIn(InputType inputType, boolean override)voidCnnLossLayer. setNIn(InputType inputType, boolean override)voidConvolution1DLayer. setNIn(InputType inputType, boolean override)voidConvolution3D. setNIn(InputType inputType, boolean override)voidConvolutionLayer. setNIn(InputType inputType, boolean override)voidDeconvolution3D. setNIn(InputType inputType, boolean override)voidDepthwiseConvolution2D. setNIn(InputType inputType, boolean override)voidDropoutLayer. setNIn(InputType inputType, boolean override)voidEmbeddingSequenceLayer. setNIn(InputType inputType, boolean override)voidFeedForwardLayer. setNIn(InputType inputType, boolean override)voidGlobalPoolingLayer. setNIn(InputType inputType, boolean override)abstract voidLayer. setNIn(InputType inputType, boolean override)Set the nIn value (number of inputs, or input channels for CNNs) based on the given input typevoidLearnedSelfAttentionLayer. setNIn(InputType inputType, boolean override)voidLocallyConnected1D. setNIn(InputType inputType, boolean override)voidLocallyConnected2D. setNIn(InputType inputType, boolean override)voidLocalResponseNormalization. setNIn(InputType inputType, boolean override)voidNoParamLayer. setNIn(InputType inputType, boolean override)voidPReLULayer. setNIn(InputType inputType, boolean override)voidPrimaryCapsules. setNIn(InputType inputType, boolean override)voidRecurrentAttentionLayer. setNIn(InputType inputType, boolean override)voidRnnLossLayer. setNIn(InputType inputType, boolean override)voidRnnOutputLayer. setNIn(InputType inputType, boolean override)voidSelfAttentionLayer. setNIn(InputType inputType, boolean override)voidSpaceToBatchLayer. setNIn(InputType inputType, boolean override)voidSpaceToDepthLayer. setNIn(InputType inputType, boolean override)voidSubsampling1DLayer. setNIn(InputType inputType, boolean override)voidSubsampling3DLayer. setNIn(InputType inputType, boolean override)voidSubsamplingLayer. setNIn(InputType inputType, boolean override)voidUpsampling2D. setNIn(InputType inputType, boolean override)voidZeroPadding1DLayer. setNIn(InputType inputType, boolean override)voidZeroPadding3DLayer. setNIn(InputType inputType, boolean override)voidZeroPaddingLayer. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.convolutional
Methods in org.deeplearning4j.nn.conf.layers.convolutional that return InputType Modifier and Type Method Description InputTypeCropping1D. getOutputType(int layerIndex, InputType inputType)InputTypeCropping2D. getOutputType(int layerIndex, InputType inputType)InputTypeCropping3D. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.conf.layers.convolutional with parameters of type InputType Modifier and Type Method Description LayerMemoryReportCropping1D. getMemoryReport(InputType inputType)LayerMemoryReportCropping2D. getMemoryReport(InputType inputType)LayerMemoryReportCropping3D. getMemoryReport(InputType inputType)InputTypeCropping1D. getOutputType(int layerIndex, InputType inputType)InputTypeCropping2D. getOutputType(int layerIndex, InputType inputType)InputTypeCropping3D. getOutputType(int layerIndex, InputType inputType)InputPreProcessorCropping1D. getPreProcessorForInputType(InputType inputType)InputPreProcessorCropping2D. getPreProcessorForInputType(InputType inputType)InputPreProcessorCropping3D. getPreProcessorForInputType(InputType inputType)voidCropping2D. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.misc
Methods in org.deeplearning4j.nn.conf.layers.misc that return InputType Modifier and Type Method Description InputTypeFrozenLayer. getOutputType(int layerIndex, InputType inputType)InputTypeRepeatVector. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.conf.layers.misc with parameters of type InputType Modifier and Type Method Description LayerMemoryReportElementWiseMultiplicationLayer. getMemoryReport(InputType inputType)This is a report of the estimated memory consumption for the given layerLayerMemoryReportFrozenLayer. getMemoryReport(InputType inputType)LayerMemoryReportRepeatVector. getMemoryReport(InputType inputType)InputTypeFrozenLayer. getOutputType(int layerIndex, InputType inputType)InputTypeRepeatVector. getOutputType(int layerIndex, InputType inputType)InputPreProcessorFrozenLayer. getPreProcessorForInputType(InputType inputType)voidFrozenLayer. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.objdetect
Methods in org.deeplearning4j.nn.conf.layers.objdetect that return InputType Modifier and Type Method Description InputTypeYolo2OutputLayer. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.conf.layers.objdetect with parameters of type InputType Modifier and Type Method Description LayerMemoryReportYolo2OutputLayer. getMemoryReport(InputType inputType)InputTypeYolo2OutputLayer. getOutputType(int layerIndex, InputType inputType)InputPreProcessorYolo2OutputLayer. getPreProcessorForInputType(InputType inputType)voidYolo2OutputLayer. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.recurrent
Methods in org.deeplearning4j.nn.conf.layers.recurrent that return InputType Modifier and Type Method Description InputTypeBidirectional. getOutputType(int layerIndex, InputType inputType)InputTypeLastTimeStep. getOutputType(int layerIndex, InputType inputType)InputTypeTimeDistributed. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.conf.layers.recurrent with parameters of type InputType Modifier and Type Method Description LayerMemoryReportBidirectional. getMemoryReport(InputType inputType)LayerMemoryReportSimpleRnn. getMemoryReport(InputType inputType)InputTypeBidirectional. getOutputType(int layerIndex, InputType inputType)InputTypeLastTimeStep. getOutputType(int layerIndex, InputType inputType)InputTypeTimeDistributed. getOutputType(int layerIndex, InputType inputType)InputPreProcessorBidirectional. getPreProcessorForInputType(InputType inputType)InputPreProcessorTimeDistributed. getPreProcessorForInputType(InputType inputType)voidBidirectional. setNIn(InputType inputType, boolean override)voidTimeDistributed. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.samediff
Methods in org.deeplearning4j.nn.conf.layers.samediff that return InputType Modifier and Type Method Description InputTypeSameDiffLambdaLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSameDiffVertex. getOutputType(int layerIndex, InputType... vertexInputs)Methods in org.deeplearning4j.nn.conf.layers.samediff with parameters of type InputType Modifier and Type Method Description LayerMemoryReportAbstractSameDiffLayer. getMemoryReport(InputType inputType)MemoryReportSameDiffVertex. getMemoryReport(InputType... inputTypes)InputTypeSameDiffLambdaLayer. getOutputType(int layerIndex, InputType inputType)InputTypeSameDiffVertex. getOutputType(int layerIndex, InputType... vertexInputs)InputPreProcessorAbstractSameDiffLayer. getPreProcessorForInputType(InputType inputType)voidAbstractSameDiffLayer. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.util
Methods in org.deeplearning4j.nn.conf.layers.util that return InputType Modifier and Type Method Description InputTypeMaskLayer. getOutputType(int layerIndex, InputType inputType)InputTypeMaskZeroLayer. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.conf.layers.util with parameters of type InputType Modifier and Type Method Description LayerMemoryReportMaskLayer. getMemoryReport(InputType inputType)LayerMemoryReportMaskZeroLayer. getMemoryReport(InputType inputType)InputTypeMaskLayer. getOutputType(int layerIndex, InputType inputType)InputTypeMaskZeroLayer. getOutputType(int layerIndex, InputType inputType)InputPreProcessorMaskLayer. getPreProcessorForInputType(InputType inputType)InputPreProcessorMaskZeroLayer. getPreProcessorForInputType(InputType inputType)voidMaskLayer. setNIn(InputType inputType, boolean override)voidMaskZeroLayer. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.variational
Methods in org.deeplearning4j.nn.conf.layers.variational with parameters of type InputType Modifier and Type Method Description LayerMemoryReportVariationalAutoencoder. getMemoryReport(InputType inputType) -
Uses of InputType in org.deeplearning4j.nn.conf.layers.wrapper
Methods in org.deeplearning4j.nn.conf.layers.wrapper that return InputType Modifier and Type Method Description InputTypeBaseWrapperLayer. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.conf.layers.wrapper with parameters of type InputType Modifier and Type Method Description LayerMemoryReportBaseWrapperLayer. getMemoryReport(InputType inputType)InputTypeBaseWrapperLayer. getOutputType(int layerIndex, InputType inputType)InputPreProcessorBaseWrapperLayer. getPreProcessorForInputType(InputType inputType)voidBaseWrapperLayer. setNIn(InputType inputType, boolean override) -
Uses of InputType in org.deeplearning4j.nn.conf.memory
Constructors in org.deeplearning4j.nn.conf.memory with parameters of type InputType Constructor Description Builder(String layerName, Class<?> layerType, InputType inputType, InputType outputType)NetworkMemoryReport(@NonNull Map<String,MemoryReport> layerAndVertexReports, @NonNull Class<?> modelClass, String modelName, @NonNull InputType... networkInputTypes) -
Uses of InputType in org.deeplearning4j.nn.conf.preprocessor
Methods in org.deeplearning4j.nn.conf.preprocessor that return InputType Modifier and Type Method Description InputTypeCnn3DToFeedForwardPreProcessor. getOutputType(InputType inputType)InputTypeCnnToFeedForwardPreProcessor. getOutputType(InputType inputType)InputTypeCnnToRnnPreProcessor. getOutputType(InputType inputType)InputTypeComposableInputPreProcessor. getOutputType(InputType inputType)InputTypeFeedForwardToCnn3DPreProcessor. getOutputType(InputType inputType)InputTypeFeedForwardToCnnPreProcessor. getOutputType(InputType inputType)InputTypeFeedForwardToRnnPreProcessor. getOutputType(InputType inputType)InputTypeRnnToCnnPreProcessor. getOutputType(InputType inputType)InputTypeRnnToFeedForwardPreProcessor. getOutputType(InputType inputType)Methods in org.deeplearning4j.nn.conf.preprocessor with parameters of type InputType Modifier and Type Method Description InputTypeCnn3DToFeedForwardPreProcessor. getOutputType(InputType inputType)InputTypeCnnToFeedForwardPreProcessor. getOutputType(InputType inputType)InputTypeCnnToRnnPreProcessor. getOutputType(InputType inputType)InputTypeComposableInputPreProcessor. getOutputType(InputType inputType)InputTypeFeedForwardToCnn3DPreProcessor. getOutputType(InputType inputType)InputTypeFeedForwardToCnnPreProcessor. getOutputType(InputType inputType)InputTypeFeedForwardToRnnPreProcessor. getOutputType(InputType inputType)InputTypeRnnToCnnPreProcessor. getOutputType(InputType inputType)InputTypeRnnToFeedForwardPreProcessor. getOutputType(InputType inputType) -
Uses of InputType in org.deeplearning4j.nn.graph
Methods in org.deeplearning4j.nn.graph with parameters of type InputType Modifier and Type Method Description StringComputationGraph. memoryInfo(int minibatch, InputType... inputTypes)Generate information regarding memory use for the network, for the given input types and minibatch size.StringComputationGraph. summary(InputType... inputTypes)String detailing the architecture of the computation graph. -
Uses of InputType in org.deeplearning4j.nn.layers.recurrent
Methods in org.deeplearning4j.nn.layers.recurrent with parameters of type InputType Modifier and Type Method Description static LayerMemoryReportLSTMHelpers. getMemoryReport(boolean isGraves, FeedForwardLayer lstmLayer, InputType inputType)static LayerMemoryReportLSTMHelpers. getMemoryReport(AbstractLSTM lstmLayer, InputType inputType)static LayerMemoryReportLSTMHelpers. getMemoryReport(GravesBidirectionalLSTM lstmLayer, InputType inputType) -
Uses of InputType in org.deeplearning4j.nn.layers.util
Methods in org.deeplearning4j.nn.layers.util that return InputType Modifier and Type Method Description InputTypeIdentityLayer. getOutputType(int layerIndex, InputType inputType)Methods in org.deeplearning4j.nn.layers.util with parameters of type InputType Modifier and Type Method Description InputTypeIdentityLayer. getOutputType(int layerIndex, InputType inputType) -
Uses of InputType in org.deeplearning4j.nn.multilayer
Methods in org.deeplearning4j.nn.multilayer with parameters of type InputType Modifier and Type Method Description StringMultiLayerNetwork. memoryInfo(int minibatch, InputType inputType)Generate information regarding memory use for the network, for the given input type and minibatch size.StringMultiLayerNetwork. summary(InputType inputType)String detailing the architecture of the multilayernetwork. -
Uses of InputType in org.deeplearning4j.nn.transferlearning
Methods in org.deeplearning4j.nn.transferlearning with parameters of type InputType Modifier and Type Method Description TransferLearning.GraphBuilderTransferLearning.GraphBuilder. setInputTypes(InputType... inputTypes)Sets the input type of corresponding inputs. -
Uses of InputType in org.deeplearning4j.preprocessors
Methods in org.deeplearning4j.preprocessors that return InputType Modifier and Type Method Description InputTypeKerasFlattenRnnPreprocessor. getOutputType(InputType inputType)InputTypePermutePreprocessor. getOutputType(InputType inputType)InputTypeReshapePreprocessor. getOutputType(InputType inputType)Methods in org.deeplearning4j.preprocessors with parameters of type InputType Modifier and Type Method Description InputTypeKerasFlattenRnnPreprocessor. getOutputType(InputType inputType)InputTypePermutePreprocessor. getOutputType(InputType inputType)InputTypeReshapePreprocessor. getOutputType(InputType inputType) -
Uses of InputType in org.deeplearning4j.util
Methods in org.deeplearning4j.util with parameters of type InputType Modifier and Type Method Description static StringCrashReportingUtil. generateMemoryStatus(Model net, int minibatch, InputType... inputTypes)Generate memory/system report as a String, for the specified network.static int[]ConvolutionUtils. getHWDFromInputType(InputType inputType)Get heigh/width/channels as length 3 int[] from the InputType
-