-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Index out of bounds #12
Comments
For more information, it stochastically throws a different type of error like this one.
My environment is PyTorch 1.5.0, CUDA 10.1.243, python 3.7, ubuntu 18.04, and installed gcc7 as shown in Readme |
Found a bug or an issue For the CollationFunctionFactory in the base_loader.py,
and the output is
as we can see, the shape of xyz0 and xyz1 does not match with lenb for some lines. |
Hi, I have the same issue, can you please tell me if you solved this and how? Thanks in advance |
I am facing a similar issue as well. How did you solve this? |
Hi,
Thanks for sharing the code.
I'm trying to train DGR on my own dataset.
So I made a dataloader which returns the same format as other loaders in this repo.
For example, I printed what getitem returns right before its returning line like this
and this is its example output
These look similar to what 3DMatch dataset returns.
So I run the training code but it complains with
To see what it means, I also printed xyz0, xyz1, and pred_pair in core/trainer.py like this
and this is what I got
For me, it seems like somehow the pred_pair is swapped since the first pred_pair has indices up to 587 which is the size of the xyz0 in the second.
I verified that I can run the training code of 3DMatch for a while.
Do you have an idea of why this error is happening?
Best,
The text was updated successfully, but these errors were encountered: