baoben1263
@baoben1263
0 reply
0 recast
0 reaction
8 replies
6 recasts
47 reactions
63 replies
206 recasts
1019 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 43 replies
157 recasts
798 reactions
2 replies
1 recast
1 reaction
22 replies
48 recasts
257 reactions
7 replies
2 recasts
31 reactions
1 reply
8 recasts
64 reactions
2 replies
1 recast
1 reaction