
James
@jamesku
866 Following
114 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
144 replies
341 recasts
1084 reactions
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
6 replies
3 recasts
47 reactions
12 replies
117 recasts
605 reactions
2 replies
3 recasts
56 reactions
0 reply
7 recasts
85 reactions
The differences between the APIs of numpy, cupy and torch are so fascinating....
```
>>> import torch as np
>>> np.arange(10)
tensor([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> a = np.zeros(20)
>>> a[19:-1:-2] = np.arange(10)
```
Torch doesn't let you have ranges that go backwards 🤣
Would love more consistency 19 replies
206 recasts
918 reactions