
Michael
@michaelye
838 Following
291 Followers
0 reply
3 recasts
60 reactions
0 reply
0 recast
0 reaction
0 reply
0 recast
4 reactions
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
77 replies
639 recasts
2580 reactions
12 replies
47 recasts
262 reactions
2 replies
45 recasts
109 reactions
5 replies
18 recasts
232 reactions
0 reply
7 recasts
85 reactions
23 replies
43 recasts
403 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
934 reactions