+After some initial analysis of the data, when we visualized the data, there was no linear trend between different features and target value .So we initially decided to try some tree based models. We started with the basic decision tree but the RMSE value was not that good. Then we used random forest and the RMSE improved drastically. Then we decided to try out few different ensemble learning techniques. We tried XGBoost , Gradient Boosting , Adaboost regression. Among these, gradient boosting helped in improving the RMSE value. We also tried out Kernel Ridge Regression which also improved the RMSE slightly. Then, we decided to merge all these good models in a voting regression model for the final prediction.
0 commit comments