Class Subsampling1DLayer
- java.lang.Object
-
- org.deeplearning4j.nn.conf.layers.Layer
-
- org.deeplearning4j.nn.conf.layers.NoParamLayer
-
- org.deeplearning4j.nn.conf.layers.SubsamplingLayer
-
- org.deeplearning4j.nn.conf.layers.Subsampling1DLayer
-
- All Implemented Interfaces:
Serializable,Cloneable,TrainingConfig
- Direct Known Subclasses:
Pooling1D
public class Subsampling1DLayer extends SubsamplingLayer
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubsampling1DLayer.Builder-
Nested classes/interfaces inherited from class org.deeplearning4j.nn.conf.layers.SubsamplingLayer
SubsamplingLayer.BaseSubsamplingBuilder<T extends SubsamplingLayer.BaseSubsamplingBuilder<T>>, SubsamplingLayer.PoolingType
-
-
Field Summary
-
Fields inherited from class org.deeplearning4j.nn.conf.layers.SubsamplingLayer
avgPoolIncludePadInDivisor, cnn2dDataFormat, convolutionMode, cudnnAllowFallback, DEFAULT_FORMAT, dilation, eps, kernelSize, padding, pnorm, poolingType, stride
-
Fields inherited from class org.deeplearning4j.nn.conf.layers.Layer
constraints, iDropout, layerName
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subsampling1DLayerclone()InputTypegetOutputType(int layerIndex, InputType inputType)For a given type of input to this layer, what is the type of the output?InputPreProcessorgetPreProcessorForInputType(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 aCnnToFeedForwardPreProcessorLayerinstantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)voidsetNIn(InputType inputType, boolean override)Set the nIn value (number of inputs, or input channels for CNNs) based on the given input type-
Methods inherited from class org.deeplearning4j.nn.conf.layers.SubsamplingLayer
getEps, getMemoryReport, getPnorm, initializer, isPretrainParam
-
Methods inherited from class org.deeplearning4j.nn.conf.layers.NoParamLayer
getGradientNormalization, getGradientNormalizationThreshold, getRegularizationByParam
-
Methods inherited from class org.deeplearning4j.nn.conf.layers.Layer
getUpdaterByParam, initializeConstraints, resetLayerDefaultConfig, setDataType
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.deeplearning4j.nn.api.TrainingConfig
getLayerName
-
-
-
-
Method Detail
-
instantiate
public Layer instantiate(NeuralNetConfiguration conf, Collection<TrainingListener> trainingListeners, int layerIndex, INDArray layerParamsView, boolean initializeParams, DataType networkDataType)
- Overrides:
instantiatein classSubsamplingLayer
-
getOutputType
public InputType getOutputType(int layerIndex, InputType inputType)
Description copied from class:LayerFor a given type of input to this layer, what is the type of the output?- Overrides:
getOutputTypein classSubsamplingLayer- Parameters:
layerIndex- Index of the layerinputType- Type of input for the layer- Returns:
- Type of output from the layer
-
setNIn
public void setNIn(InputType inputType, boolean override)
Description copied from class:LayerSet the nIn value (number of inputs, or input channels for CNNs) based on the given input type- Overrides:
setNInin classSubsamplingLayer- Parameters:
inputType- Input type for this layeroverride- If false: only set the nIn value if it's not already set. If true: set it regardless of whether it's already set or not.
-
getPreProcessorForInputType
public InputPreProcessor getPreProcessorForInputType(InputType inputType)
Description copied from class:LayerFor 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 aCnnToFeedForwardPreProcessor- Overrides:
getPreProcessorForInputTypein classSubsamplingLayer- Parameters:
inputType- InputType to this layer- Returns:
- Null if no preprocessor is required, otherwise the type of preprocessor necessary for this layer/input combination
-
clone
public Subsampling1DLayer clone()
- Overrides:
clonein classSubsamplingLayer
-
-