Skip to content

Instantly share code, notes, and snippets.

@mdhasanai
Last active September 27, 2018 16:42
Show Gist options
  • Save mdhasanai/857780776bac49480145ee54c1262175 to your computer and use it in GitHub Desktop.
Save mdhasanai/857780776bac49480145ee54c1262175 to your computer and use it in GitHub Desktop.
import numpy as np
def sigmoid(x):
s = 1. / (1 + np.exp(-x))
return s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment