Improving multiclassification model prediction using real world dataset

Hi, I’m trying to create a multiclassification model to predict a particular bird species using a real world dataset of the following images that were submitted by the public. It consists of roughly 33,000 images very similar to the following.
Image 1:
20276951
Image 2:
20776471
Image 3:
20908521
Image 4:
21520971
Image 5:
21549081
Image 6:
21584961
Image 7:
21680751
Image 8:
21680761
Image 9:
22261261
Image 10:
22611611
Image 11:
22899151
Image 12:
22920351
Image 13:
23132321

The problem I’m having is that my model is incapable of getting an accuracy beyond ~58% on the training dataset, beyond which is starts to flatten out as shown here:


I also applied a cyclical learning rate but to no avail as shown above. So, I used transfer learning particularly InceptionV3 and MobileNet and the validation accuracy still didn’t improve beyond my own model. So, I went back to look at the data. From your experience from looking at the above images, which range from a max resolution of 4347x3260 to 512x512, do you think I need to clean the dataset by removing some of the images and cropping out parts of the images?
Thanks

Is this really on the train dataset or on the test/validation dataset?

It’s on the train/validation dataset. I haven’t tested it on the test dataset.

So do you meant that with your model you cannot overfit the training set?

Yeah as shown above it just levels off no matter how long I run it for.

As you have enought variance in the target appearance (single, multi etc.) I think you could try to experiment with an object detection approach.

Please check

Thanks, I’ll go through that and see how I get on. The dataset I have consists of 33 different species of birds roughly 1000 images of each species where the image quality is similar to the above. I thought the problem was that when the images were being reduced the birds in the distance were becoming too low in resolution so I was thinking of deleting those ones and cropping some of the birds out of the high resolution images before reducing them in size for the model. But it’s very time consuming.

I think that when you have the annotated bounding boxes of the target you can have more flexible solutions about the resolution and you can have more specific augmentation specially if your dataset is small (33 classes over 1000 images it doesn’t seems to me too rich).

But you first goal now is still to achieve a decent overfit of your train dataset.

Sorry, I meant I have 1000 images of each of the 33 species resulting in 33,000 images. I thought that was plenty as I ran a similar bird identification model using the following Kaggle 270 species dataset and received an validation accuracy of 94%.
So I looked over that data and the difference between mine was each of those images were of single bird species whereas mine were from a distance, more than one bird in each image etc.
Thanks, I’ll go through that tutorial and see if there is much improvement.