Guest User

Untitled

a guest
May 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. print(feature_maps)
  2.  
  3. [[2 1 4]
  4. [1 3 2]
  5. [5 2 6]
  6. [2 2 1]]
  7.  
  8. print(feature_maps.shape)
  9.  
  10. (4, 3)
  11.  
  12. print(dropout_mask)
  13.  
  14. [[0 1 0]]
  15.  
  16. print(dropout_mask.shape)
  17.  
  18. (1, 4)
  19.  
  20. print(feature_maps * dropout_mask)
  21.  
  22. [[2 1 4]
  23. [0 0 0]
  24. [0 0 0]
  25. [2 2 1]]
Add Comment
Please, Sign In to add comment