Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. 1x1 conv (32 x 32 x 24) <-- initial convolution: 2 k output feature-maps
  2.  
  3. 1x1 conv (32 x 32 x 48) <-- 4 k output feature-maps.
  4. 3x3 conv (32 x 32 x 12) <-- reducing to growth factor k
  5. concatenate (32 x 32 x (24+12))
  6. 1x1 conv (32 x 32 x 48)
  7. 3x3 conv (32 x 32 x 12)
  8. concatenate (32 x 32 x (24+12+12))
  9. ... (total of L=100 bottleneck-blocks)
  10. concatenate (32 x 32 x (24+100*12))
  11.  
  12. transition layer (conv and pooling)
  13.  
  14. 1x1 conv (16 x 16 x (24+100*12) / 2) <-- from the compression, we half the number of channels
  15. 3x3 conv (16 x 16 x 12)
  16. concatenate (16 x 16 x ((24+100*12) / 2 + 12)
  17. ...
Add Comment
Please, Sign In to add comment