Viewing a single comment thread. View all comments

KingB2k19 t1_iwg0tl9 wrote

Trying my hand at a Machine Learning model that predicts car prices as a side project.

I essentially have access to lots of data of car sales going back about 10-20 years and jt includes things like make/model/year etc

Anybody done anything in this space?

2

theLanguageSprite t1_iwlkxv1 wrote

You probably want a random forest. There should be stuff in python’s s scikitlearn module. Make sure to put aside about 10 percent of the data for validation

2