
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
161 recasts
505 reactions
0 reply
0 recast
0 reaction
2 replies
4 recasts
16 reactions
1 reply
0 recast
1 reaction
6 replies
34 recasts
190 reactions
0 reply
0 recast
1 reaction
23 replies
43 recasts
403 reactions
23 replies
30 recasts
160 reactions
169 replies
27 recasts
77 reactions
41 replies
196 recasts
675 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
0 reply
0 recast
0 reaction
77 replies
639 recasts
2575 reactions