Daniel Martinez
@danielmartinez7
971 Following
572 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
1 reply
0 recast
1 reaction
62 replies
62 recasts
1453 reactions
0 reply
0 recast
0 reaction
2 replies
4 recasts
41 reactions
1 reply
0 recast
1 reaction
6 replies
23 recasts
502 reactions
1 reply
0 recast
1 reaction
27 replies
135 recasts
886 reactions
24 replies
25 recasts
162 reactions
196 replies
14 recasts
145 reactions
39 replies
433 recasts
1970 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
639 recasts
2643 reactions
0 reply
0 recast
0 reaction
132 replies
1613 recasts
6263 reactions