Train.csv only has labels for 304 images and image folder contains 427 images

Train.csv only has labels for 304 images and image folder contains 427 images. How am i supposed to get labels for rest of the images? Or should we have to use only first 304 images?

Are we supposed to select those images from the images folder that has labels in the train.csv because train.csv donnot contain labels of first 304 images, it’s in random order.

hey @vineetchanana ,

Yes you are correct.
You need to read images based on the image names provided in the train.csv file and similarly also predict the way they are provided in test.csv.

As all the images are in the same folder , then you can use a sample path to be like
Images/256.jpg , in this way you need to create all paths and read image from this path.

I hope this helps. :slightly_smiling_face:.