Draft
feat: ENEL time-series forecasting pipeline with walk-forward validation#12
Conversation
Co-authored-by: MCCdvd <157378826+MCCdvd@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add forecasting pipeline for ENEL time-series dataset
feat: ENEL time-series forecasting pipeline with walk-forward validation
Aug 29, 2026
Co-authored-by: MCCdvd <157378826+MCCdvd@users.noreply.github.com>
Co-authored-by: MCCdvd <157378826+MCCdvd@users.noreply.github.com>
Copilot stopped work on behalf of
MCCdvd due to an error
September 7, 2026 12:48
Copilot stopped work on behalf of
MCCdvd due to an error
September 7, 2026 13:01
Copilot stopped work on behalf of
MCCdvd due to an error
September 7, 2026 13:08
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a reproducible ML forecasting pipeline for the ENEL daily stock dataset, comparing multiple models under strict walk-forward validation (no leakage).
Pipeline (
enel/enel_forecast.py)1.234,56→1234.56), date sortingtpredictt+1TimeSeriesSplitwalk-forward (default 5 folds); scaler fit per fold to prevent leakagereports/enel_model_comparison.csvpip install -r enel/requirements_enel.txt # place dataset at enel/ENEL.csv then: python enel/enel_forecast.py [--data PATH] [--splits N] [--skip-arima]ARIMA is auto-skipped for datasets > 1000 rows (too slow for per-step re-fitting);
--skip-arimaforces skip.Other changes
enel/requirements_enel.txt: pinned deps (pandas,scikit-learn,lightgbm,statsmodels).gitignore: excludesenel/ENEL.csv(user-provided, not committed)README.md: added ENEL forecasting section with dataset format, assumptions, and usage