
Charles Anderson
@charlesanderson
957 Following
16 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
57 replies
64 recasts
518 reactions
0 reply
0 recast
0 reaction
2 replies
2 recasts
11 reactions
0 reply
0 recast
0 reaction
1 reply
0 recast
0 reaction
23 replies
30 recasts
161 reactions
32 replies
53 recasts
284 reactions
41 replies
148 recasts
683 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
198 recasts
904 reactions
0 reply
0 recast
0 reaction