Package functions

Class ReLU

java.lang.Object
functions.ReLU

public class ReLU
extends java.lang.Object
  • Constructor Summary

    Constructors
    Constructor Description
    ReLU()  
  • Method Summary

    Modifier and Type Method Description
    double activation​(double x)
    Rectified Linear Unit Function.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ReLU

      public ReLU()
  • Method Details

    • activation

      public double activation​(double x)
      Rectified Linear Unit Function. f(x)=max(x,0)