What did you realize when you tried to submit your predictions? What changes were needed to the output of the predictor to submit your results?
TODO: Add your explanation
TODO: Add your explanation
It was the WeightedEnsemble method at first, then after adding hyperparameter tuning, it was LightGBM.
TODO: Add your explanation
I added an additional feature 'month','hour' and 'day' by separating the date using to_datetime function.
I also found out that the most important feature was the 'hour' feature, followed by 'workingday' and 'datetime'
How much better did your model preform after adding additional features and why do you think that is?
TODO: Add your explanation
TODO: Add your explanation
After trying different hyperparameters the performance score dropped and there was no improvement on the error score.
TODO: Add your explanation
model | hpo1 | hpo2 | hpo3 | score |
---|---|---|---|---|
initial | default_feats | default_feats | default_feats | 1.39 |
add_features | default_feats | default_feats | default_feats | 0.47 |
hpo | num_trials:num_trials | scheduler:local | searcher:search_strategy | 0.54 |
Create a line plot showing the top model score for the three (or more) training runs during the project.
TODO: Replace the image below with your own.
Create a line plot showing the top kaggle score for the three (or more) prediction submissions during the project.
TODO: Replace the image below with your own.
TODO: Add your explanation