Interface Layer<O extends TensorBase>

All Known Implementing Classes:
AbstractLayer, ConvolutionalLayer, FlattenLayer, FullyConnectedLayer, InputLayer, MaxPoolingLayer, OutputLayer, SoftmaxOutputLayer

public interface Layer<O extends TensorBase>
Common base interface for all types of neural network layers. Layer is a basic building block of a neural network
invalid reference
NeuralNetwork
. Neural network typically consists of a sequence of layers. Layer performs mathematical operations on it's inputs, and provides output to yhe next layer as an input.
See Also: