Class Cropping2D

    • Constructor Detail

      • Cropping2D

        public Cropping2D​(int cropTopBottom,
                          int cropLeftRight)
        Parameters:
        cropTopBottom - Amount of cropping to apply to both the top and the bottom of the input activations
        cropLeftRight - Amount of cropping to apply to both the left and the right of the input activations
      • Cropping2D

        public Cropping2D​(CNN2DFormat dataFormat,
                          int cropTopBottom,
                          int cropLeftRight)
      • Cropping2D

        public Cropping2D​(int cropTop,
                          int cropBottom,
                          int cropLeft,
                          int cropRight)
        Parameters:
        cropTop - Amount of cropping to apply to the top of the input activations
        cropBottom - Amount of cropping to apply to the bottom of the input activations
        cropLeft - Amount of cropping to apply to the left of the input activations
        cropRight - Amount of cropping to apply to the right of the input activations
      • Cropping2D

        public Cropping2D​(CNN2DFormat format,
                          int cropTop,
                          int cropBottom,
                          int cropLeft,
                          int cropRight)
      • Cropping2D

        public Cropping2D​(int[] cropping)
        Parameters:
        cropping - Cropping as either a length 2 array, with values [cropTopBottom, cropLeftRight], or as a length 4 array, with values [cropTop, cropBottom, cropLeft, cropRight]
    • Method Detail

      • 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?
        Specified by:
        getOutputType in class Layer
        Parameters:
        layerIndex - Index of the layer
        inputType - Type of input for the layer
        Returns:
        Type of output from the layer
      • 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
        Specified by:
        getPreProcessorForInputType in class Layer
        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
      • 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 NoParamLayer
        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.