Class ReLU<T>
java.lang.Object
org.episteme.core.mathematics.ml.neural.layers.ActivationLayer<T>
org.episteme.core.mathematics.ml.neural.layers.ReLU<T>
- All Implemented Interfaces:
Serializable, Layer<T>
Rectified Linear Unit (ReLU) activation layer.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class ActivationLayer
getFunctionMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Layer
forward, getGradients, setTraining
-
Constructor Details
-
ReLU
public ReLU()
-
-
Method Details
-
forward
Description copied from interface:LayerPerforms a forward pass using explicit autograd nodes. -
getParameters
Description copied from interface:LayerReturns the learnable parameters of this layer. Keys should be unique within the layer (e.g., "weights", "bias").- Specified by:
getParametersin interfaceLayer<T>- Overrides:
getParametersin classActivationLayer<T>- Returns:
- a map of parameter graph nodes.
-