Noah Marvy
Results
1
issues of
Noah Marvy
Minimum example ``` import torch_scatter import torch indptr = torch.tensor([0, 3, 7]) x = torch.randn(8, 11) lin = torch.nn.Linear(11, 11) opt = torch.optim.SGD(lin.parameters()) x = lin(x) x = torch_scatter.segment_csr(x, indptr,...