Closed karlosos closed 3 years ago
Hey,
I was able to reproduce your error. This comes from the huge batch size you are using (32). (technically it is my fault, I will reduce the default batch size in this script).
I was able to train a model with a batch size of 4 and 8. It also showed that I made a mistake while zipping the dataset, since a .DS_Store file is in there... Remove it and the training will be fine.
I'll care of both these modifications this week end. Let me know if you are now able to run the script.
Yeah. Thank you! Removing .DS_Store
files with
!rm ./data_keypoints/data_keypoints/.DS_Store
!rm ./data_keypoints/data_keypoints/test/.DS_Store
!rm ./data_keypoints/data_keypoints/test/Annotations/.DS_Store
!rm ./data_keypoints/data_keypoints/train/.DS_Store
!rm ./data_keypoints/data_keypoints/train/Annotations/.DS_Store
!rm ./data_keypoints/data_keypoints/train/JPEGImages/.DS_Store
and changing batch_size fixed the problem! 🎉
I have a problem with training
KeypointDetectorModel
on Google Colab. A mysterious thing happens and the cell ends with^C
output.I have no idea where the problem is as there is no logs. Here is colab notebook with minimal code to reproduce this error.