Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created January 27, 2018 11:51
Show Gist options
  • 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