Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. `array([[ 0.10651613],
  2. [ 0.11501053],
  3. [ 0.11034159],
  4. [ 0.11213908],
  5. [ 0.10754446],
  6. [ 0.09952921],
  7. [ 0.10827382],
  8. [ 0.11763775],
  9. [ 0.10538466],
  10. [ 0.10562691]])
  11.  
  12. def relu(x):
  13. return x * (x > 0)
  14.  
  15. def relu_diff(x):
  16. return x > 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement