Uses of Class
deepnetts.net.layers.Filter
Packages that use Filter
Package
Description
Neural network architectures with their corresponding builders.
Neural network layers, which are main building blocks of a neural network.
-
Uses of Filter in deepnetts.net
Methods in deepnetts.net with parameters of type FilterModifier and TypeMethodDescriptionConvolutionalNetwork.Builder.addConvolutionalLayer
(int channelNum, Filter filter) Adds a convolutional layer with the given number of channels(filters), with given settings of a convolutional filter and default type of activation function.ConvolutionalNetwork.Builder.addConvolutionalLayer
(int channelNum, Filter filter, ActivationType activationType) Adds a convolutional layer with the given number of channels(filters), with given settings of a convolutional filter and given type of activation function.ConvolutionalNetwork.Builder.addMaxPoolingLayer
(Filter filter) Adds a max pooling layer with the given filter settings.Max pooling layer comes after convolutional layer and reduces the dimensions of the input received from the previous layer. -
Uses of Filter in deepnetts.net.layers
Methods in deepnetts.net.layers that return FilterModifier and TypeMethodDescriptionFilter.groups
(int groups) static Filter
Filters.ofSize
(int size) Factory method that creates filter settings with specified size (using same size for filter width and height).static Filter
Filters.ofSize
(int width, int height) Factory method that creates a filter settings with specified width and heightFilter.padding
(int padding) Filter.stride
(int stride) Constructors in deepnetts.net.layers with parameters of type FilterModifierConstructorDescriptionConvolutionalLayer
(int channels, Filter filter) ConvolutionalLayer
(int channels, Filter filter, ActivationType activationType) MaxPoolingLayer
(Filter filter)