-
Notifications
You must be signed in to change notification settings - Fork 3
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
Backbone training: Unclear requirements #4
Comments
Also, a small section on how to use this project with your videos and data would greatly help. What are the requirements? How to extract information for the config files? etc. |
Hi, Thank you for the details. I believe the simplest way to conduct a small experiment is to comment the video names that you don't have yet, for both TRAIN_LIST and VAL_LIST in ./lib/dataset/panoptic(_ssv).py. For instance:
You can also set VAL_LIST as the same video if you wish. We will add this in README file for quicker experiments. For custom dataset, apart from the pseudo 2d label generation (you may choose any 2d pose detector), the key configurations are the 3d space size and space center coordinates. Please check microsoft/voxelpose-pytorch#10. However, we don't have relevant code as we haven't done experiments with other datasets ourselves. Sorry. |
Thank you for your reply. I did setup the TRAIN/VAL_LIST like in your example and downloaded both datasets. It did setup all the necessary folder structures as described in the README file and extracted all information from them. Nonetheless, I am pretty stuck on this error:
I would greatly appriciate if you could guide me towards possible solutions for this error. I do not understand why I get plenty of this warning logs of missing pictures, when |
Sorry I forgot one thing. Our current code is directly reading the detected 2d poses from the pkl file you downloaded. That means, the dataset content is already decided. The modification of the TRAIN_LIST or VAL_LIST will only affect the original VoxelPose training, as it will generate corresponding pkl when the pkl doesn't exist (by 3d-2d projection). The problem can be fixed by directly changing the content of the pkl file, or by changing the len and getitem function in the JointsDatasetSSV.py. Sorry that I currently have some trouble accessing the data. I will add the function for subset training once I have chance. Thank you! |
After setting up the 160224_haggling1 data folder, I wanted to run:
python -u tools/train_3d.py --cfg configs/panoptic_ssl/resnet50/backbone_pseudo_hrnet_soft_9videos.yaml
Sadly, this does not work. Given the output of the command:
It seems like all the data folders of the following list have to be set up before the pre-trained models can be used:
Is this assumption correct?
Given that is quite resource-heavy to store 200+gb of files before we can even test anything, can you please share a minimal working example? E.g. only using the
160224_haggling1
? This would make this project more attractive for others to experiment with.The text was updated successfully, but these errors were encountered: