Kristof Overdulve
Kristof Overdulve
In my case the CPU version of torch_cluster was in my pip cache causing it to prefer that cached version to the one available at https://data.pyg.org/whl/torch-1.11.0+cu117.html. Adding the `--no-cache-dir` solved...
Apparently the cause of this issue is a mismatch between PyTorch versions. What worked for me was to remove the submodule (simple_knn and diff_gaussian_rasterization) folders entirely (if you did not...
In my case the issue was not having installed timm. It was resolved by doing ``` pip install timm ```