Add Activation Layer
Synopsis
Adds an activation layer to your neural net structure.
Description
This operator has to be placed into the subprocess of the Deep Learning, Deep Learning (Tensor) or Autoencoder operator. It adds an activation layer to the neural net structure. Often the activation function is already set in an operator like "Add Fully-Connected Layer" or "Add Convolution Layer". In scenarios where batch normalization is needed, it is common practise to deactivating the activation in e.g. a fully-connected layer (by choosing "non (identity)" as an activation), and adding an activation layer after the batch normalization resulting e.g. in "fully-connected --> batch normalization --> activation".
It's important to note, that the activation function should be chosen differently for the last layer of the network. Check the parameters description for more information.
Input
layerArchitecture
A network configuration setup with previous operators. Connect this port to the layerArchitecture output port of another add layer operator or to the layer port of the "Deep Learning" operator if this layer is the first one.
Output
layerArchitecture
The network with the configuration for this fully-connected layer added. Connect this port to the next input port of another layer or the layer port on the right side of the "Deep Learning" operator.