Created
January 27, 2018 11:51
-
-
Save NMZivkovic/bd1f8ded61f3547b16c090d9a870dcb2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RectifiedActivationFuncion : IActivationFunction | |
{ | |
public double CalculateOutput(double input) | |
{ | |
return Math.Max(0, input); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment