AbstractActivationLayer
Base class for all layer class representing activation functions.
By default, it is marked as not trainable layer with no extra parameters and weights but having the activation on it.
By default, it defines returning the output with the same shape as the input Operand.
Parameters
name
Layer name. Would be changed if empty during model compilation.
Constructors
AbstractActivationLayer
Link copied to clipboard
Functions
buildFromInboundLayers
Link copied to clipboard
Extend this function to define variables in layer.
computeOutputShape
Link copied to clipboard
Computes output shape, based on inputShape and Layer type.
computeOutputShapeFromInboundLayers
Link copied to clipboard
Computes output shape, based on input shapes of inbound layers.
Properties
hasActivation
Link copied to clipboard
inboundLayers
Link copied to clipboard
isTrainable
Link copied to clipboard
outboundLayers
Link copied to clipboard
outputShape
Link copied to clipboard
paramCount
Link copied to clipboard
parentModel
Link copied to clipboard
Inheritors
ELU
Link copied to clipboard
LeakyReLU
Link copied to clipboard
PReLU
Link copied to clipboard
ReLU
Link copied to clipboard
Softmax
Link copied to clipboard
ThresholdedReLU
Link copied to clipboard
ActivationLayer
Link copied to clipboard