
Daniel Martinez
@danielmartinez7
971 Following
29 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
1 reply
0 recast
1 reaction
58 replies
64 recasts
518 reactions
0 reply
0 recast
0 reaction
2 replies
4 recasts
16 reactions
1 reply
0 recast
1 reaction
6 replies
34 recasts
191 reactions
0 reply
0 recast
1 reaction
23 replies
43 recasts
403 reactions
23 replies
30 recasts
157 reactions
165 replies
27 recasts
77 reactions
41 replies
140 recasts
663 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
195 recasts
898 reactions
0 reply
0 recast
0 reaction
77 replies
630 recasts
2514 reactions