
Matthew Robinson
@matthewrobinson
980 Following
27 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
3 replies
0 recast
1 reaction
7 replies
129 recasts
359 reactions
0 reply
0 recast
0 reaction
59 replies
29 recasts
152 reactions
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
7 recasts
85 reactions
23 replies
30 recasts
160 reactions
0 reply
1 recast
21 reactions
71 replies
411 recasts
1940 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
938 reactions
77 replies
777 recasts
2587 reactions
0 reply
0 recast
0 reaction