Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. >>> x = torch.autograd.Variable(torch.zeros(32, 48, 256))
  2. >>> c = nn.Conv1d(48, 48, 2, padding=1, dilation=1)
  3. >>> c(x)
  4. Variable containing:
  5. ( 0 ,.,.) =
  6. 0.0772 0.0772 0.0772 ... 0.0772 0.0772 0.0772
  7. -0.0369 -0.0369 -0.0369 ... -0.0369 -0.0369 -0.0369
  8. -0.0734 -0.0734 -0.0734 ... -0.0734 -0.0734 -0.0734
  9. ... ⋱ ...
  10. -0.0844 -0.0844 -0.0844 ... -0.0844 -0.0844 -0.0844
  11. -0.0752 -0.0752 -0.0752 ... -0.0752 -0.0752 -0.0752
  12. -0.0422 -0.0422 -0.0422 ... -0.0422 -0.0422 -0.0422
  13.  
  14. ( 1 ,.,.) =
  15. 0.0772 0.0772 0.0772 ... 0.0772 0.0772 0.0772
  16. -0.0369 -0.0369 -0.0369 ... -0.0369 -0.0369 -0.0369
  17. -0.0734 -0.0734 -0.0734 ... -0.0734 -0.0734 -0.0734
  18. ... ⋱ ...
  19. -0.0844 -0.0844 -0.0844 ... -0.0844 -0.0844 -0.0844
  20. -0.0752 -0.0752 -0.0752 ... -0.0752 -0.0752 -0.0752
  21. -0.0422 -0.0422 -0.0422 ... -0.0422 -0.0422 -0.0422
  22.  
  23. ( 2 ,.,.) =
  24. 0.0772 0.0772 0.0772 ... 0.0772 0.0772 0.0772
  25. -0.0369 -0.0369 -0.0369 ... -0.0369 -0.0369 -0.0369
  26. -0.0734 -0.0734 -0.0734 ... -0.0734 -0.0734 -0.0734
  27. ... ⋱ ...
  28. -0.0844 -0.0844 -0.0844 ... -0.0844 -0.0844 -0.0844
  29. -0.0752 -0.0752 -0.0752 ... -0.0752 -0.0752 -0.0752
  30. -0.0422 -0.0422 -0.0422 ... -0.0422 -0.0422 -0.0422
  31. ...
  32.  
  33. (29 ,.,.) =
  34. 0.0772 0.0772 0.0772 ... 0.0772 0.0772 0.0772
  35. -0.0369 -0.0369 -0.0369 ... -0.0369 -0.0369 -0.0369
  36. -0.0734 -0.0734 -0.0734 ... -0.0734 -0.0734 -0.0734
  37. ... ⋱ ...
  38. -0.0844 -0.0844 -0.0844 ... -0.0844 -0.0844 -0.0844
  39. -0.0752 -0.0752 -0.0752 ... -0.0752 -0.0752 -0.0752
  40. -0.0422 -0.0422 -0.0422 ... -0.0422 -0.0422 -0.0422
  41.  
  42. (30 ,.,.) =
  43. 0.0772 0.0772 0.0772 ... 0.0772 0.0772 0.0772
  44. -0.0369 -0.0369 -0.0369 ... -0.0369 -0.0369 -0.0369
  45. -0.0734 -0.0734 -0.0734 ... -0.0734 -0.0734 -0.0734
  46. ... ⋱ ...
  47. -0.0844 -0.0844 -0.0844 ... -0.0844 -0.0844 -0.0844
  48. -0.0752 -0.0752 -0.0752 ... -0.0752 -0.0752 -0.0752
  49. -0.0422 -0.0422 -0.0422 ... -0.0422 -0.0422 -0.0422
  50.  
  51. (31 ,.,.) =
  52. 0.0772 0.0772 0.0772 ... 0.0772 0.0772 0.0772
  53. -0.0369 -0.0369 -0.0369 ... -0.0369 -0.0369 -0.0369
  54. -0.0734 -0.0734 -0.0734 ... -0.0734 -0.0734 -0.0734
  55. ... ⋱ ...
  56. -0.0844 -0.0844 -0.0844 ... -0.0844 -0.0844 -0.0844
  57. -0.0752 -0.0752 -0.0752 ... -0.0752 -0.0752 -0.0752
  58. -0.0422 -0.0422 -0.0422 ... -0.0422 -0.0422 -0.0422
  59. [torch.FloatTensor of size 32x48x257]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement