
Scott Adams
@scottadams
979 Following
225 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
10 replies
6 recasts
79 reactions
2 replies
5 recasts
87 reactions
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
9 replies
16 recasts
57 reactions
0 reply
0 recast
9 reactions
1 reply
0 recast
9 reactions
1 reply
2 recasts
39 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
8 replies
178 recasts
543 reactions
0 reply
0 recast
0 reaction
1 reply
24 recasts
148 reactions