at-tan / Forecasting_Air_Pollution

Stacking a machine learning ensemble for multivariate time series forecasting, with the goal of predicting the one-period ahead PM 2.5 air pollution level, as published in Towards Data Science on Medium.com

Home Page:https://towardsdatascience.com/stacking-machine-learning-models-for-multivariate-time-series-28a082f881?sk=7e7880ed0cebe567c44c6604bc23d683

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stacking Machine Learning Models for Multivariate Time Series

Crafting an ensemble stack of machine learning models to analyse the Beijing air pollution dataset (2016). The article showcases how machine learning methods may be used effectively on multivariate time series data. The stack ensemble included a diverse mix of linear models, tree-based models, support vector models and neural networks as base models. The final meta model was the perennial favourite OLS. The target variable was the one-hour ahead PM 2.5 pollution reading.

The data exhibited significant outliers and complex seasonalities, and was plagued by missing target values. Following pre-modelling data analysis and engineering, the data was subsetted three-ways, according to its temporal order, with the latest 10% of the data taken as the holdout test set. The remaining 90% of the data was in turn split into an earlier gridsearch training set (2/3) for the base models, and a later meta training set (1/3) for the meta model. The training data (the 90%) was also used to run a 5-fold forward chain cross-validation procedure to assess model performance, for all the models used. The cross-validation found that the Stack Model indeed mostly outperformed the individual base models on the MAE and RMSE scores.

The subsequent results on the holdout test set showed the Stack Model with the best MAE and RMSE scores. The stack's scores also evinced a 5–6% improvement over the baseline Persistence Model. In conclusion, the exercise demonstrated the effectiveness of a machine learning ensemble stack approach to multivariate time series analysis.

A description of the research methodology and the model findings are presented in https://towardsdatascience.com/stacking-machine-learning-models-for-multivariate-time-series-28a082f881?sk=7e7880ed0cebe567c44c6604bc23d683

About

Stacking a machine learning ensemble for multivariate time series forecasting, with the goal of predicting the one-period ahead PM 2.5 air pollution level, as published in Towards Data Science on Medium.com

https://towardsdatascience.com/stacking-machine-learning-models-for-multivariate-time-series-28a082f881?sk=7e7880ed0cebe567c44c6604bc23d683


Languages

Language:Jupyter Notebook 100.0%