nisargptl / vehicle-recognition

This enables users to gather information about any vehicle and they can see the details in a matter of seconds. Snap a quick photo in the app and it will provide the details about the vehicle make, model, year, user ratings and starting retail price. In addition, it will provide this same information for the 2 closest competitors so a user can do some quick comparison shopping.
https://viris.herokuapp.com/
0 stars 1 forks source link

201801163_Challenges_Solutions #62

Closed khyatibhuva closed 3 years ago

khyatibhuva commented 3 years ago

Write your challenges you faced in this entire project and how to solved them.

sjdhola commented 3 years ago

Challenges and solutions:

  1. The first challenge was to prepare dataset. The dataset we found was not in class-wise format and to train our model we required data into classwise format. So, first we have to prepare the data class-wise. Also, the images were not of the same size and in most of the images background was there. So, we also have to make all images of same size as well as we have to remove background. To solve this issue first i created dataset classwise using file handling techniques and with the help of opencv i made the all images of same size and removed the background from all images.

  2. While training the model we come to know that data is not enough to train the model. For training such type of model , we require the big dataset of images to classify classes well. To solve this issue i have done data augmentation in our data. From our original data i have generated more images of same type as well as i have done some reshuffling in training and testing data.

  3. After training model the issue we faced was, model was correctly working and giving good accuracy in our system but when the integration team were trying predict the images the model was giving wrong output each and everytime. The main problem was with the ordering of classes in both the system. Both the system were taking different order of the classes. After making ordering same this isuue was resolved.

khyatibhuva commented 3 years ago

Nicely done.