
baoben1263
@baoben1263
0 reply
0 recast
0 reaction
6 replies
9 recasts
59 reactions
59 replies
428 recasts
1797 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
277 recasts
1230 reactions
0 reply
1 recast
0 reaction
22 replies
98 recasts
449 reactions
7 replies
1 recast
57 reactions
1 reply
16 recasts
92 reactions
0 reply
1 recast
0 reaction