Very Weird error,No such file or directory: '/content/dataset/4738.jpg'

I can’t figure out why/where the dataloaders are figuring there is a file called 4738.jpg. I can’t even find the source of the mistake

The image path is defined as img_loc = self.data_path/f'{idx}.jpg', so it uses the passed idx to the __getitem__. By default this variable will be in the range [0, len(dataset)-1], so you should make sure that all these files exist.

1 Like

Wow, that was extremely silly. Thank you for helping me with the blindspot!