Meeting error in episode 5(Training Object Detection Models)

I followed the video tutorial, Error occurs after execute “train_ssd.py”

please help

Hi @jusltop, it would seem like an image from your dataset is missing or corrupted. You can either try re-downloading the dataset, or add some debug print-outs to the code to determine which image it is that is failing to load. For example, you can add a print statement below this line of code:

https://github.com/dusty-nv/pytorch-ssd/blob/3f9ba554e33260c8c493a927d7c4fdaa3f388e72/vision/datasets/open_images.py#L106

print(str(image_file))

Then the last filename before the exception is thrown is the one that is causing the error.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.