EE 461 Final Post I: Load Forecasting for Tonga Power Limited
Project Completion Update
We’re thrilled to share that our load
forecasting project has reached its final stage. All selected models were
trained, validated, tested, and benchmarked. The forecasting models will
support Tonga Power Limited (TPL) in making better-informed decisions for power
generation and operational planning.
Project Summary
Using normalized historical energy data, we forecasted long-term electricity demand (`SENT_OUT`) with five different models:
Model Results (Test Set)
Model |
MAE |
MAPE |
RMSE |
R² |
ARIMA |
0.023 |
10.65% |
0.0331 |
0.9978 |
SARIMA |
0.2081 |
79.34% |
0.2562 |
0.8641 |
LSTM |
0.2842 |
39.17% |
0.4120 |
0.516 |
CNN |
0.1489 |
23.70% |
0.2011 |
0.9558 |
LSTM-CNN Hybrid |
0.446 |
88.23% |
0.5760 |
0.6764 |
Insights
ARIMA achieved the highest R² of 0.9978 with very low prediction error. Surprisingly, it outperformed the more complex models, likely due to the stationary nature and strong autocorrelation in the dataset.
CNN was the best-performing deep learning model, with a solid R² of 0.9558 and low MAE (0.1489), indicating good generalization and reliable peak forecasting.
LSTM and LSTM-CNN hybrid underperformed on the test set, with high MAPE values and lower R² scores.
Recommendations
Based on performance:
1) Adopt ARIMA as the primary forecasting tool for short datasets
2) Use CNN for scenarios requiring deeper learning from high-dimensional or
enriched future datasets
3) Avoid LSTM/hybrid for now unless more complex inputs (e.g., weather,
holidays) are introduced
Visual Representations
Statistical models.
This suggests that seasonality was better modeled by ARIMA in this case, likely due to the smooth nature of demand
Comments
Post a Comment