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

Database #26

Closed nisargptl closed 3 years ago

nisargptl commented 3 years ago

The Car Names list and Car Details database are not in sync. Car_names.csv final_car_details_2.csv Changes are to be made in final_car_details_2 file as per the names in Car_names file.

khyatibhuva commented 3 years ago

Noted. Working on it. Will send you today itself.

khyatibhuva commented 3 years ago

Done.

final_car_details_2_corrected.xlsx

For comparing values, we used pandas library. Swapnil, can you please upload the code also?

sjdhola commented 3 years ago

import pandas as pd import numpy as np data1 = pd.read_csv("/content/Car_names.csv",header=None) data2 = pd.read_csv("/content/final_car_details_2.csv") x=np.array(data2['Name']) y=np.array(data1[0]) x=sorted(x) y=sorted(y) cnt=0 for i in range(100): if x[i]!=y[i]: print(i,x[i],"!=",y[i]) cnt+=1

khyatibhuva commented 3 years ago

Thank you.