Roberto59f
Results
1
comments of
Roberto59f
I had the same error, i looked at this issue https://stackoverflow.com/questions/56513576/converting-tensor-to-one-hot-encoded-tensor-of-indices and adjust line 74 in torch_points3d\core\data_transform from `item = F.one_hot(item - item_min)` to ` item = F.one_hot(item.to(torch.int64) - item_min.to(torch.int64))`...