Skip to content

Instantly share code, notes, and snippets.

@justindmartin
Last active February 8, 2019 18:07
Show Gist options
  • Save justindmartin/5856162 to your computer and use it in GitHub Desktop.
Save justindmartin/5856162 to your computer and use it in GitHub Desktop.
This is a sigmoid function in PHP.
<?php
function sigmoid($t){
return 1 / (1 + pow(M_EULER, -$t));
}
?>
@raymondjplante
Copy link

Wrote a basic softmax in case anyone's interested: https://gist.github.com/raymondjplante/d826df05349c1d4350e0aa2d7ca01da4

@ai-a
Copy link

ai-a commented Feb 8, 2019

Thanks a million! was looking for this function! so simple!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment