Skip to content

Commit

Permalink
update logistic function
Browse files Browse the repository at this point in the history
  • Loading branch information
lindseysbrown committed Dec 11, 2018
1 parent 0f28b7c commit 67c8fe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AD20/AD20/ADmath.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def log(X):
return np.log(X)

def logistic(X):
return 1/(1+exp(-X))
return 1/(1+exp(-1*X))


def sqrt(X):
Expand Down

0 comments on commit 67c8fe5

Please sign in to comment.