Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created January 27, 2018 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/bd1f8ded61f3547b16c090d9a870dcb2 to your computer and use it in GitHub Desktop.
Save NMZivkovic/bd1f8ded61f3547b16c090d9a870dcb2 to your computer and use it in GitHub Desktop.
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