Guest User

Untitled

a guest
May 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. def __loss(self, h, y):
  2. return (-y * np.log(h) - (1 - y) * np.log(1 - h)).mean()
Add Comment
Please, Sign In to add comment