Class ConvolutionLayer

    • Constructor Detail

      • ConvolutionLayer

        protected ConvolutionLayer​(ConvolutionLayer.BaseConvBuilder<?> builder)
        ConvolutionLayer nIn in the input layer is the number of channels nOut is the number of filters to be used in the net or in other words the channels The builder specifies the filter/kernel size, the stride and padding The pooling layer takes the kernel size
    • Method Detail

      • hasBias

        public boolean hasBias()
      • getOutputType

        public InputType getOutputType​(int layerIndex,
                                       InputType inputType)
        Description copied from class: Layer
        For a given type of input to this layer, what is the type of the output?
        Overrides:
        getOutputType in class FeedForwardLayer
        Parameters:
        layerIndex - Index of the layer
        inputType - 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: Layer
        Set the nIn value (number of inputs, or input channels for CNNs) based on the given input type
        Overrides:
        setNIn in class FeedForwardLayer
        Parameters:
        inputType - Input type for this layer
        override - 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: Layer
        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 appropriate InputPreProcessor for this layer, such as a CnnToFeedForwardPreProcessor
        Overrides:
        getPreProcessorForInputType in class FeedForwardLayer
        Parameters:
        inputType - InputType to this layer
        Returns:
        Null if no preprocessor is required, otherwise the type of preprocessor necessary for this layer/input combination
      • getMemoryReport

        public LayerMemoryReport getMemoryReport​(InputType inputType)
        Description copied from class: Layer
        This is a report of the estimated memory consumption for the given layer
        Specified by:
        getMemoryReport in class Layer
        Parameters:
        inputType - Input type to the layer. Memory consumption is often a function of the input type
        Returns:
        Memory report for the layer