
baoben1263
@baoben1263
0 reply
0 recast
0 reaction
6 replies
9 recasts
59 reactions
58 replies
489 recasts
2893 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
439 recasts
1783 reactions
0 reply
1 recast
0 reaction
22 replies
183 recasts
795 reactions
7 replies
1 recast
74 reactions
1 reply
16 recasts
113 reactions
0 reply
1 recast
0 reaction