-
Notifications
You must be signed in to change notification settings - Fork 52
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
ValueError: invalid literal for int() with base 10: 'post1' #94
Comments
@jfitzg7 when I run the command I get this error. Could you please show where you downloaded the image_sets folder of ycbv? I don't have it
|
actually downloaded it from the following not just BOP challenge website https://rse-lab.cs.washington.edu/projects/posecnn/
^^ I am gonna spend sometimes on this error. Now, my ycbv folder looks like:
Please let me know about your thoughts |
Hi @monajalal sorry for the late reply, but I have sadly not run into that KeyError before. I believe I downloaded the keyframes.txt file from this website https://github.com/yuxng/YCB_Video_toolbox but the one you posted looks like it might be better and contain more of the necessary files! However, my thought is that perhaps the keyframes.txt from that website is causing the error? I'm not entirely sure though since I haven't checked the differences between the one you provided and the one from yuxng's GitHub repo. |
@jfitzg7 have you been able to train gdrnpp from scratch on a custom dataset made with blenderproc? would you be able to get in touch with [email protected] ? Thank you |
I am seeing this when I search for keyframes.txt
I also noticed it here https://raw.githubusercontent.com/yuxng/YCB_Video_toolbox/master/keyframe.txt From what you say, except not sure why the data I downloaded has so many keyframes.txt? |
Also, have you been able to train gdrnpp on a custom data from scratch? |
@monajalal Do you complete to train your custom data about pose estimation?? |
I think this event is relevant to the bop renderer building with a wrong imageio version. |
I ran into this error while running the command
./core/gdrn_modeling/train_gdrn.sh configs/gdrn/ycbv/convnext_a6_AugCosyAAEGray_BG05_mlL1_DMask_amodalClipBox_classAware_ycbv.py 0,1 --strategy ddp --eval-only
which seems to be related to imageio:The line of code
return tuple(int(x) for x in pil_version.split("."))
grabs the pillow version which is 9.0.0.post1 and doesn't parse the post1 part correctly.I've downgraded to imageio==2.23.0 which works, but I just arbitrarily chose that. It may be worth explicitly setting the imageio version to one that works in the requirements.txt, since the latest version (2.33.1) will throw this error.
The text was updated successfully, but these errors were encountered: