Daniel Martinez
@danielmartinez7
971 Following
573 Followers
0 reply
0 recast
0 reaction
0 reply
0 recast
0 reaction
1 reply
0 recast
1 reaction
62 replies
241 recasts
1315 reactions
0 reply
0 recast
0 reaction
2 replies
5 recasts
33 reactions
1 reply
0 recast
1 reaction
6 replies
69 recasts
491 reactions
1 reply
0 recast
1 reaction
24 replies
124 recasts
777 reactions
24 replies
139 recasts
425 reactions
196 replies
14 recasts
115 reactions
39 replies
373 recasts
1727 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
557 recasts
2262 reactions
0 reply
0 recast
0 reaction
113 replies
1392 recasts
5421 reactions