You are on page 1of 6

Car Price Prediction

FA19-BCS-014
How it will work
Main Points we need
• name
• year
• selling_price
• km_driven
• fuel
• seller_type
• transmission
• Owner
Algorithm
Random Forest is a supervised machine learning
algorithm widely used for classification and
regression problems. It builds decision trees on
different samples and in case of regression does
majority vote for class and mean.
Outline of my Work
• Data Overview
• Data visualization
• Data preparation (missing values ​
and categorical
data)
• Model comparison and selection (linear regression,
random forest regression, gradient boosting
regression, extreme gradient boosting}
• prophecy
Conclusion
So at the end The model trains multiple decision trees,
and the final result is either a majority vote (for
classification) or an average vote (for regression).
Random samples are drawn from each tree, which
prevents overfitting, and random forests seem to
perform well for large datasets.

You might also like