Skip to content

Instantly share code, notes, and snippets.

@monk1337
Created June 7, 2018 15:18
Show Gist options
  • Save monk1337/dfeacff5b1ca392adaddd75e5dbce32b to your computer and use it in GitHub Desktop.
Save monk1337/dfeacff5b1ca392adaddd75e5dbce32b to your computer and use it in GitHub Desktop.
5 # The shape is []
[ 1., 2., 3., 4. ] # The shape is [4]
[[ 1., 2., 3., 4. ],[ 5., 6., 7., 8. ]] # Matrix of shape [ 2,4]
[[[ 1., 2., 3., 4. ] ],[ [ 5., 6., 7., 8. ]]] # Tensor of shape [ 2, 1, 4 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment