Uses of Interface
deepnetts.net.layers.Layer
Packages that use Layer
Package
Description
Neural network layers, which are main building blocks of a neural network.
-
Uses of Layer in deepnetts.net.layers
Classes in deepnetts.net.layers that implement LayerModifier and TypeClassDescriptionclassAbstractLayer<I extends TensorBase,O extends TensorBase, W extends TensorBase> Base class for different types of layers.final classConvolutional layer performs image convolution operation on outputs of a previous layer using filters.classTransforms outputs from previous 3D layer into a flatten 1D tensor in forward pass, Backward pass propagates weighted errors/deltas from the next fully connected layer.classFully connected layer is used as a hidden layer in a neural network, and it has a single row of units/nodes/neurons connected to all neurons in previous and next layer.classInput layer in a neural network.final classThis layer performs max pooling operation in convolutional neural network, which scales down output from previous layer by taking max outputs from small predefined filter areas.classOutput layer of a neural network.classOutput layer with softmax activation function.