Andrew Young
@andrewyoung
954 Following
554 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
10 replies
3 recasts
46 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
635 recasts
2609 reactions
23 replies
354 recasts
1658 reactions
12 replies
91 recasts
531 reactions
0 reply
0 recast
1 reaction
120 replies
1602 recasts
6194 reactions