Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
import datetime
|
|
|
|
|
2021-09-01 16:25:04 -07:00
|
|
|
import numpy as np
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
import pandas as pd
|
|
|
|
|
2021-09-01 16:25:04 -07:00
|
|
|
from flaml import AutoML
|
|
|
|
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
from flaml.automl.task.time_series_task import TimeSeriesTask
|
2021-09-01 16:25:04 -07:00
|
|
|
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
|
|
|
|
def test_forecast_automl(budget=10, estimators_when_no_prophet=["arima", "sarimax", "holt-winters"]):
|
2021-08-23 16:26:46 -04:00
|
|
|
# using dataframe
|
|
|
|
import statsmodels.api as sm
|
2021-09-10 16:39:16 -07:00
|
|
|
|
|
|
|
data = sm.datasets.co2.load_pandas().data["co2"].resample("MS").mean()
|
2023-04-10 21:50:40 +02:00
|
|
|
data = data.bfill().ffill().to_frame().reset_index().rename(columns={"index": "ds", "co2": "y"})
|
2021-08-23 16:26:46 -04:00
|
|
|
num_samples = data.shape[0]
|
|
|
|
time_horizon = 12
|
|
|
|
split_idx = num_samples - time_horizon
|
2021-09-01 16:25:04 -07:00
|
|
|
df = data[:split_idx]
|
2021-09-10 16:39:16 -07:00
|
|
|
X_test = data[split_idx:]["ds"]
|
|
|
|
y_test = data[split_idx:]["y"]
|
2021-08-23 16:26:46 -04:00
|
|
|
automl = AutoML()
|
|
|
|
settings = {
|
|
|
|
"time_budget": budget, # total running time in seconds
|
2021-09-10 16:39:16 -07:00
|
|
|
"metric": "mape", # primary metric
|
2021-10-30 12:48:57 -04:00
|
|
|
"task": "ts_forecast", # task type
|
2021-09-10 16:39:16 -07:00
|
|
|
"log_file_name": "test/CO2_forecast.log", # flaml log file
|
2021-08-23 16:26:46 -04:00
|
|
|
"eval_method": "holdout",
|
2021-10-30 12:48:57 -04:00
|
|
|
"label": "y",
|
2021-08-23 16:26:46 -04:00
|
|
|
}
|
2021-09-10 16:39:16 -07:00
|
|
|
"""The main flaml automl API"""
|
2021-08-23 16:26:46 -04:00
|
|
|
try:
|
2021-09-11 21:19:18 -07:00
|
|
|
import prophet
|
|
|
|
|
2021-09-01 16:25:04 -07:00
|
|
|
automl.fit(dataframe=df, **settings, period=time_horizon)
|
2021-08-23 16:26:46 -04:00
|
|
|
except ImportError:
|
2021-09-11 21:19:18 -07:00
|
|
|
print("not using prophet due to ImportError")
|
2021-09-10 16:39:16 -07:00
|
|
|
automl.fit(
|
|
|
|
dataframe=df,
|
|
|
|
**settings,
|
2023-04-04 19:29:54 +02:00
|
|
|
estimator_list=estimators_when_no_prophet,
|
2021-09-10 16:39:16 -07:00
|
|
|
period=time_horizon,
|
|
|
|
)
|
|
|
|
""" retrieve best config and best learner"""
|
|
|
|
print("Best ML leaner:", automl.best_estimator)
|
|
|
|
print("Best hyperparmeter config:", automl.best_config)
|
|
|
|
print(f"Best mape on validation data: {automl.best_loss}")
|
|
|
|
print(f"Training duration of best run: {automl.best_config_train_time}s")
|
2021-08-23 16:26:46 -04:00
|
|
|
print(automl.model.estimator)
|
2021-09-10 16:39:16 -07:00
|
|
|
""" pickle and save the automl object """
|
2021-08-23 16:26:46 -04:00
|
|
|
import pickle
|
2021-09-10 16:39:16 -07:00
|
|
|
|
|
|
|
with open("automl.pkl", "wb") as f:
|
2021-08-23 16:26:46 -04:00
|
|
|
pickle.dump(automl, f, pickle.HIGHEST_PROTOCOL)
|
2021-09-10 16:39:16 -07:00
|
|
|
""" compute predictions of testing dataset """
|
2021-08-23 16:26:46 -04:00
|
|
|
y_pred = automl.predict(X_test)
|
2021-09-10 16:39:16 -07:00
|
|
|
print("Predicted labels", y_pred)
|
|
|
|
print("True labels", y_test)
|
|
|
|
""" compute different metric values on testing dataset"""
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.ml import sklearn_metric_loss_score
|
2021-09-10 16:39:16 -07:00
|
|
|
|
2022-08-12 11:39:22 -04:00
|
|
|
mape = sklearn_metric_loss_score("mape", y_pred, y_test)
|
|
|
|
print("mape", "=", mape)
|
|
|
|
assert mape <= 0.005, "the mape of flaml should be less than 0.005"
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.data import get_output_from_log
|
2021-09-10 16:39:16 -07:00
|
|
|
|
|
|
|
(
|
|
|
|
time_history,
|
|
|
|
best_valid_loss_history,
|
|
|
|
valid_loss_history,
|
|
|
|
config_history,
|
|
|
|
metric_history,
|
|
|
|
) = get_output_from_log(filename=settings["log_file_name"], time_budget=budget)
|
2021-08-23 16:26:46 -04:00
|
|
|
for config in config_history:
|
|
|
|
print(config)
|
2021-12-04 21:52:20 -05:00
|
|
|
print(automl.resource_attr)
|
2021-08-23 16:26:46 -04:00
|
|
|
print(automl.max_resource)
|
|
|
|
print(automl.min_resource)
|
|
|
|
|
2021-10-30 12:48:57 -04:00
|
|
|
X_train = df[["ds"]]
|
2021-09-10 16:39:16 -07:00
|
|
|
y_train = df["y"]
|
2021-09-01 16:25:04 -07:00
|
|
|
automl = AutoML()
|
|
|
|
try:
|
|
|
|
automl.fit(X_train=X_train, y_train=y_train, **settings, period=time_horizon)
|
|
|
|
except ImportError:
|
2021-09-11 21:19:18 -07:00
|
|
|
print("not using prophet due to ImportError")
|
2021-09-10 16:39:16 -07:00
|
|
|
automl.fit(
|
|
|
|
X_train=X_train,
|
|
|
|
y_train=y_train,
|
|
|
|
**settings,
|
2023-04-04 19:29:54 +02:00
|
|
|
estimator_list=estimators_when_no_prophet,
|
2021-09-10 16:39:16 -07:00
|
|
|
period=time_horizon,
|
|
|
|
)
|
2021-08-23 16:26:46 -04:00
|
|
|
|
2021-09-01 16:25:04 -07:00
|
|
|
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
def test_models(budget=3):
|
|
|
|
n = 100
|
|
|
|
X = pd.DataFrame(
|
|
|
|
{
|
|
|
|
"A": pd.date_range(start="1900-01-01", periods=n, freq="D"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
y = np.exp(np.random.randn(n))
|
|
|
|
|
|
|
|
task = TimeSeriesTask("ts_forecast")
|
|
|
|
|
|
|
|
for est in task.estimators.keys():
|
|
|
|
if est == "tft":
|
|
|
|
continue # TFT is covered by its own test
|
|
|
|
automl = AutoML()
|
|
|
|
automl.fit(
|
|
|
|
X_train=X[:72], # a single column of timestamp
|
|
|
|
y_train=y[:72], # value for each timestamp
|
|
|
|
estimator_list=[est],
|
|
|
|
period=12, # time horizon to forecast, e.g., 12 months
|
|
|
|
task="ts_forecast",
|
|
|
|
time_budget=budget, # time budget in seconds
|
|
|
|
)
|
|
|
|
automl.predict(X[72:])
|
|
|
|
|
|
|
|
|
2021-09-01 16:25:04 -07:00
|
|
|
def test_numpy():
|
2021-09-10 16:39:16 -07:00
|
|
|
X_train = np.arange("2014-01", "2021-01", dtype="datetime64[M]")
|
2021-10-30 12:48:57 -04:00
|
|
|
y_train = np.random.random(size=len(X_train))
|
2021-08-23 16:26:46 -04:00
|
|
|
automl = AutoML()
|
2022-01-23 01:24:15 -08:00
|
|
|
automl.fit(
|
|
|
|
X_train=X_train[:72], # a single column of timestamp
|
|
|
|
y_train=y_train[:72], # value for each timestamp
|
|
|
|
period=12, # time horizon to forecast, e.g., 12 months
|
|
|
|
task="ts_forecast",
|
|
|
|
time_budget=3, # time budget in seconds
|
|
|
|
log_file_name="test/ts_forecast.log",
|
|
|
|
n_splits=3, # number of splits
|
|
|
|
)
|
|
|
|
print(automl.predict(X_train[72:]))
|
2021-09-11 21:19:18 -07:00
|
|
|
|
2022-01-23 01:24:15 -08:00
|
|
|
automl = AutoML()
|
|
|
|
automl.fit(
|
|
|
|
X_train=X_train[:72], # a single column of timestamp
|
|
|
|
y_train=y_train[:72], # value for each timestamp
|
|
|
|
period=12, # time horizon to forecast, e.g., 12 months
|
|
|
|
task="ts_forecast",
|
|
|
|
time_budget=1, # time budget in seconds
|
|
|
|
estimator_list=["arima", "sarimax"],
|
|
|
|
log_file_name="test/ts_forecast.log",
|
|
|
|
)
|
|
|
|
print(automl.predict(X_train[72:]))
|
|
|
|
# an alternative way to specify predict steps for arima/sarimax
|
|
|
|
print(automl.predict(12))
|
2021-08-23 16:26:46 -04:00
|
|
|
|
|
|
|
|
2022-01-30 10:30:30 -05:00
|
|
|
def test_numpy_large():
|
|
|
|
import numpy as np
|
|
|
|
import pandas as pd
|
|
|
|
from flaml import AutoML
|
|
|
|
|
|
|
|
X_train = pd.date_range("2017-01-01", periods=70000, freq="T")
|
|
|
|
y_train = pd.DataFrame(np.random.randint(6500, 7500, 70000))
|
|
|
|
automl = AutoML()
|
|
|
|
automl.fit(
|
|
|
|
X_train=X_train[:-10].values, # a single column of timestamp
|
|
|
|
y_train=y_train[:-10].values, # value for each timestamp
|
|
|
|
period=10, # time horizon to forecast, e.g., 12 months
|
|
|
|
task="ts_forecast",
|
|
|
|
time_budget=10, # time budget in seconds
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-10-30 12:48:57 -04:00
|
|
|
def load_multi_dataset():
|
|
|
|
"""multivariate time series forecasting dataset"""
|
|
|
|
import pandas as pd
|
|
|
|
|
|
|
|
# pd.set_option("display.max_rows", None, "display.max_columns", None)
|
2021-11-16 14:06:20 -05:00
|
|
|
df = pd.read_csv(
|
|
|
|
"https://raw.githubusercontent.com/srivatsan88/YouTubeLI/master/dataset/nyc_energy_consumption.csv"
|
|
|
|
)
|
2021-10-30 12:48:57 -04:00
|
|
|
# preprocessing data
|
|
|
|
df["timeStamp"] = pd.to_datetime(df["timeStamp"])
|
|
|
|
df = df.set_index("timeStamp")
|
|
|
|
df = df.resample("D").mean()
|
|
|
|
df["temp"] = df["temp"].fillna(method="ffill")
|
|
|
|
df["precip"] = df["precip"].fillna(method="ffill")
|
|
|
|
df = df[:-2] # last two rows are NaN for 'demand' column so remove them
|
|
|
|
df = df.reset_index()
|
|
|
|
|
|
|
|
return df
|
|
|
|
|
|
|
|
|
2023-04-10 21:50:40 +02:00
|
|
|
def test_multivariate_forecast_num(budget=5, estimators_when_no_prophet=["arima", "sarimax", "holt-winters"]):
|
2021-10-30 12:48:57 -04:00
|
|
|
df = load_multi_dataset()
|
|
|
|
# split data into train and test
|
|
|
|
time_horizon = 180
|
|
|
|
num_samples = df.shape[0]
|
|
|
|
split_idx = num_samples - time_horizon
|
|
|
|
train_df = df[:split_idx]
|
|
|
|
test_df = df[split_idx:]
|
2022-05-28 17:22:09 -07:00
|
|
|
# test dataframe must contain values for the regressors / multivariate variables
|
|
|
|
X_test = test_df[["timeStamp", "temp", "precip"]]
|
2021-10-30 12:48:57 -04:00
|
|
|
y_test = test_df["demand"]
|
|
|
|
# return
|
|
|
|
automl = AutoML()
|
|
|
|
settings = {
|
|
|
|
"time_budget": budget, # total running time in seconds
|
|
|
|
"metric": "mape", # primary metric
|
|
|
|
"task": "ts_forecast", # task type
|
|
|
|
"log_file_name": "test/energy_forecast_numerical.log", # flaml log file
|
|
|
|
"eval_method": "holdout",
|
|
|
|
"log_type": "all",
|
2021-11-16 14:06:20 -05:00
|
|
|
"label": "demand",
|
2021-10-30 12:48:57 -04:00
|
|
|
}
|
2021-11-16 14:06:20 -05:00
|
|
|
"""The main flaml automl API"""
|
2021-10-30 12:48:57 -04:00
|
|
|
try:
|
|
|
|
import prophet
|
|
|
|
|
|
|
|
automl.fit(dataframe=train_df, **settings, period=time_horizon)
|
|
|
|
except ImportError:
|
|
|
|
print("not using prophet due to ImportError")
|
|
|
|
automl.fit(
|
|
|
|
dataframe=train_df,
|
|
|
|
**settings,
|
2023-04-04 19:29:54 +02:00
|
|
|
estimator_list=estimators_when_no_prophet,
|
2021-10-30 12:48:57 -04:00
|
|
|
period=time_horizon,
|
|
|
|
)
|
|
|
|
""" retrieve best config and best learner"""
|
|
|
|
print("Best ML leaner:", automl.best_estimator)
|
|
|
|
print("Best hyperparmeter config:", automl.best_config)
|
|
|
|
print(f"Best mape on validation data: {automl.best_loss}")
|
|
|
|
print(f"Training duration of best run: {automl.best_config_train_time}s")
|
|
|
|
print(automl.model.estimator)
|
|
|
|
""" pickle and save the automl object """
|
|
|
|
import pickle
|
|
|
|
|
|
|
|
with open("automl.pkl", "wb") as f:
|
|
|
|
pickle.dump(automl, f, pickle.HIGHEST_PROTOCOL)
|
|
|
|
""" compute predictions of testing dataset """
|
|
|
|
y_pred = automl.predict(X_test)
|
|
|
|
print("Predicted labels", y_pred)
|
|
|
|
print("True labels", y_test)
|
|
|
|
""" compute different metric values on testing dataset"""
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.ml import sklearn_metric_loss_score
|
2021-10-30 12:48:57 -04:00
|
|
|
|
|
|
|
print("mape", "=", sklearn_metric_loss_score("mape", y_pred, y_test))
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.data import get_output_from_log
|
2021-10-30 12:48:57 -04:00
|
|
|
|
2021-11-16 14:06:20 -05:00
|
|
|
(
|
|
|
|
time_history,
|
|
|
|
best_valid_loss_history,
|
|
|
|
valid_loss_history,
|
|
|
|
config_history,
|
|
|
|
metric_history,
|
|
|
|
) = get_output_from_log(filename=settings["log_file_name"], time_budget=budget)
|
2021-10-30 12:48:57 -04:00
|
|
|
for config in config_history:
|
|
|
|
print(config)
|
2021-12-04 21:52:20 -05:00
|
|
|
print(automl.resource_attr)
|
2021-10-30 12:48:57 -04:00
|
|
|
print(automl.max_resource)
|
|
|
|
print(automl.min_resource)
|
|
|
|
|
|
|
|
# import matplotlib.pyplot as plt
|
|
|
|
#
|
|
|
|
# plt.figure()
|
|
|
|
# plt.plot(X_test["timeStamp"], y_test, label="Actual Demand")
|
|
|
|
# plt.plot(X_test["timeStamp"], y_pred, label="FLAML Forecast")
|
|
|
|
# plt.xlabel("Date")
|
|
|
|
# plt.ylabel("Energy Demand")
|
|
|
|
# plt.legend()
|
|
|
|
# plt.show()
|
|
|
|
|
|
|
|
|
|
|
|
def load_multi_dataset_cat(time_horizon):
|
|
|
|
df = load_multi_dataset()
|
|
|
|
|
|
|
|
df = df[["timeStamp", "demand", "temp"]]
|
|
|
|
|
|
|
|
# feature engineering - use discrete values to denote different categories
|
|
|
|
def season(date):
|
|
|
|
date = (date.month, date.day)
|
|
|
|
spring = (3, 20)
|
|
|
|
summer = (6, 21)
|
|
|
|
fall = (9, 22)
|
|
|
|
winter = (12, 21)
|
|
|
|
if date < spring or date >= winter:
|
|
|
|
return "winter" # winter 0
|
|
|
|
elif spring <= date < summer:
|
|
|
|
return "spring" # spring 1
|
|
|
|
elif summer <= date < fall:
|
|
|
|
return "summer" # summer 2
|
|
|
|
elif fall <= date < winter:
|
|
|
|
return "fall" # fall 3
|
|
|
|
|
|
|
|
def get_monthly_avg(data):
|
|
|
|
data["month"] = data["timeStamp"].dt.month
|
|
|
|
data = data[["month", "temp"]].groupby("month")
|
|
|
|
data = data.agg({"temp": "mean"})
|
|
|
|
return data
|
|
|
|
|
|
|
|
monthly_avg = get_monthly_avg(df).to_dict().get("temp")
|
|
|
|
|
|
|
|
def above_monthly_avg(date, temp):
|
|
|
|
month = date.month
|
|
|
|
if temp > monthly_avg.get(month):
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
df["season"] = df["timeStamp"].apply(season)
|
2023-04-10 21:50:40 +02:00
|
|
|
df["above_monthly_avg"] = df.apply(lambda x: above_monthly_avg(x["timeStamp"], x["temp"]), axis=1)
|
2021-10-30 12:48:57 -04:00
|
|
|
|
|
|
|
# split data into train and test
|
|
|
|
num_samples = df.shape[0]
|
|
|
|
split_idx = num_samples - time_horizon
|
|
|
|
train_df = df[:split_idx]
|
|
|
|
test_df = df[split_idx:]
|
|
|
|
|
|
|
|
del train_df["temp"], train_df["month"]
|
|
|
|
|
|
|
|
return train_df, test_df
|
|
|
|
|
|
|
|
|
2023-04-10 21:50:40 +02:00
|
|
|
def test_multivariate_forecast_cat(budget=5, estimators_when_no_prophet=["arima", "sarimax", "holt-winters"]):
|
2021-10-30 12:48:57 -04:00
|
|
|
time_horizon = 180
|
|
|
|
train_df, test_df = load_multi_dataset_cat(time_horizon)
|
2021-11-16 14:06:20 -05:00
|
|
|
X_test = test_df[
|
|
|
|
["timeStamp", "season", "above_monthly_avg"]
|
|
|
|
] # test dataframe must contain values for the regressors / multivariate variables
|
2021-10-30 12:48:57 -04:00
|
|
|
y_test = test_df["demand"]
|
|
|
|
automl = AutoML()
|
|
|
|
settings = {
|
|
|
|
"time_budget": budget, # total running time in seconds
|
|
|
|
"metric": "mape", # primary metric
|
|
|
|
"task": "ts_forecast", # task type
|
2022-01-07 02:12:38 -05:00
|
|
|
"log_file_name": "test/energy_forecast_categorical.log", # flaml log file
|
2021-10-30 12:48:57 -04:00
|
|
|
"eval_method": "holdout",
|
|
|
|
"log_type": "all",
|
2021-11-16 14:06:20 -05:00
|
|
|
"label": "demand",
|
2021-10-30 12:48:57 -04:00
|
|
|
}
|
2021-11-16 14:06:20 -05:00
|
|
|
"""The main flaml automl API"""
|
2021-10-30 12:48:57 -04:00
|
|
|
try:
|
|
|
|
import prophet
|
|
|
|
|
|
|
|
automl.fit(dataframe=train_df, **settings, period=time_horizon)
|
|
|
|
except ImportError:
|
|
|
|
print("not using prophet due to ImportError")
|
|
|
|
automl.fit(
|
|
|
|
dataframe=train_df,
|
|
|
|
**settings,
|
2023-04-04 19:29:54 +02:00
|
|
|
estimator_list=estimators_when_no_prophet,
|
2021-10-30 12:48:57 -04:00
|
|
|
period=time_horizon,
|
|
|
|
)
|
|
|
|
""" retrieve best config and best learner"""
|
|
|
|
print("Best ML leaner:", automl.best_estimator)
|
|
|
|
print("Best hyperparmeter config:", automl.best_config)
|
|
|
|
print(f"Best mape on validation data: {automl.best_loss}")
|
|
|
|
print(f"Training duration of best run: {automl.best_config_train_time}s")
|
|
|
|
print(automl.model.estimator)
|
|
|
|
""" pickle and save the automl object """
|
|
|
|
import pickle
|
|
|
|
|
|
|
|
with open("automl.pkl", "wb") as f:
|
|
|
|
pickle.dump(automl, f, pickle.HIGHEST_PROTOCOL)
|
|
|
|
""" compute predictions of testing dataset """
|
|
|
|
y_pred = automl.predict(X_test)
|
|
|
|
print("Predicted labels", y_pred)
|
|
|
|
print("True labels", y_test)
|
|
|
|
""" compute different metric values on testing dataset"""
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.ml import sklearn_metric_loss_score
|
2021-10-30 12:48:57 -04:00
|
|
|
|
|
|
|
print("mape", "=", sklearn_metric_loss_score("mape", y_pred, y_test))
|
|
|
|
print("rmse", "=", sklearn_metric_loss_score("rmse", y_pred, y_test))
|
|
|
|
print("mse", "=", sklearn_metric_loss_score("mse", y_pred, y_test))
|
|
|
|
print("mae", "=", sklearn_metric_loss_score("mae", y_pred, y_test))
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.data import get_output_from_log
|
2021-10-30 12:48:57 -04:00
|
|
|
|
2021-11-16 14:06:20 -05:00
|
|
|
(
|
|
|
|
time_history,
|
|
|
|
best_valid_loss_history,
|
|
|
|
valid_loss_history,
|
|
|
|
config_history,
|
|
|
|
metric_history,
|
|
|
|
) = get_output_from_log(filename=settings["log_file_name"], time_budget=budget)
|
2021-10-30 12:48:57 -04:00
|
|
|
for config in config_history:
|
|
|
|
print(config)
|
2021-12-04 21:52:20 -05:00
|
|
|
print(automl.resource_attr)
|
2021-10-30 12:48:57 -04:00
|
|
|
print(automl.max_resource)
|
|
|
|
print(automl.min_resource)
|
|
|
|
|
|
|
|
# import matplotlib.pyplot as plt
|
|
|
|
#
|
|
|
|
# plt.figure()
|
|
|
|
# plt.plot(X_test["timeStamp"], y_test, label="Actual Demand")
|
|
|
|
# plt.plot(X_test["timeStamp"], y_pred, label="FLAML Forecast")
|
|
|
|
# plt.xlabel("Date")
|
|
|
|
# plt.ylabel("Energy Demand")
|
|
|
|
# plt.legend()
|
|
|
|
# plt.show()
|
|
|
|
|
|
|
|
|
2022-01-24 21:39:36 -05:00
|
|
|
def test_forecast_classification(budget=5):
|
|
|
|
from hcrystalball.utils import get_sales_data
|
|
|
|
|
|
|
|
time_horizon = 30
|
|
|
|
df = get_sales_data(n_dates=180, n_assortments=1, n_states=1, n_stores=1)
|
|
|
|
df = df[["Sales", "Open", "Promo", "Promo2"]]
|
|
|
|
# feature engineering
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
df["above_mean_sales"] = np.where(df["Sales"] > df["Sales"].mean(), 1, 0)
|
|
|
|
df.reset_index(inplace=True)
|
|
|
|
train_df = df[:-time_horizon]
|
|
|
|
test_df = df[-time_horizon:]
|
|
|
|
X_train, X_test = (
|
|
|
|
train_df[["Date", "Open", "Promo", "Promo2"]],
|
|
|
|
test_df[["Date", "Open", "Promo", "Promo2"]],
|
|
|
|
)
|
|
|
|
y_train, y_test = train_df["above_mean_sales"], test_df["above_mean_sales"]
|
|
|
|
automl = AutoML()
|
|
|
|
settings = {
|
|
|
|
"time_budget": budget, # total running time in seconds
|
|
|
|
"metric": "accuracy", # primary metric
|
|
|
|
"task": "ts_forecast_classification", # task type
|
|
|
|
"log_file_name": "test/sales_classification_forecast.log", # flaml log file
|
|
|
|
"eval_method": "holdout",
|
|
|
|
}
|
|
|
|
"""The main flaml automl API"""
|
|
|
|
automl.fit(X_train=X_train, y_train=y_train, **settings, period=time_horizon)
|
|
|
|
""" retrieve best config and best learner"""
|
|
|
|
print("Best ML leaner:", automl.best_estimator)
|
|
|
|
print("Best hyperparmeter config:", automl.best_config)
|
|
|
|
print(f"Best mape on validation data: {automl.best_loss}")
|
|
|
|
print(f"Training duration of best run: {automl.best_config_train_time}s")
|
|
|
|
print(automl.model.estimator)
|
|
|
|
""" pickle and save the automl object """
|
|
|
|
import pickle
|
|
|
|
|
|
|
|
with open("automl.pkl", "wb") as f:
|
|
|
|
pickle.dump(automl, f, pickle.HIGHEST_PROTOCOL)
|
|
|
|
""" compute predictions of testing dataset """
|
|
|
|
y_pred = automl.predict(X_test)
|
|
|
|
""" compute different metric values on testing dataset"""
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.ml import sklearn_metric_loss_score
|
2022-01-24 21:39:36 -05:00
|
|
|
|
|
|
|
print(y_test)
|
|
|
|
print(y_pred)
|
2022-08-12 11:39:22 -04:00
|
|
|
print("accuracy", "=", 1 - sklearn_metric_loss_score("accuracy", y_pred, y_test))
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.data import get_output_from_log
|
2022-01-24 21:39:36 -05:00
|
|
|
|
|
|
|
(
|
|
|
|
time_history,
|
|
|
|
best_valid_loss_history,
|
|
|
|
valid_loss_history,
|
|
|
|
config_history,
|
|
|
|
metric_history,
|
|
|
|
) = get_output_from_log(filename=settings["log_file_name"], time_budget=budget)
|
|
|
|
for config in config_history:
|
|
|
|
print(config)
|
|
|
|
print(automl.resource_attr)
|
|
|
|
print(automl.max_resource)
|
|
|
|
print(automl.min_resource)
|
|
|
|
# import matplotlib.pyplot as plt
|
|
|
|
#
|
|
|
|
# plt.title("Learning Curve")
|
|
|
|
# plt.xlabel("Wall Clock Time (s)")
|
|
|
|
# plt.ylabel("Validation Accuracy")
|
|
|
|
# plt.scatter(time_history, 1 - np.array(valid_loss_history))
|
|
|
|
# plt.step(time_history, 1 - np.array(best_valid_loss_history), where="post")
|
|
|
|
# plt.show()
|
|
|
|
|
|
|
|
|
2022-08-12 11:39:22 -04:00
|
|
|
def get_stalliion_data():
|
|
|
|
from pytorch_forecasting.data.examples import get_stallion_data
|
|
|
|
|
|
|
|
data = get_stallion_data()
|
|
|
|
# add time index - For datasets with no missing values, FLAML will automate this process
|
|
|
|
data["time_idx"] = data["date"].dt.year * 12 + data["date"].dt.month
|
|
|
|
data["time_idx"] -= data["time_idx"].min()
|
|
|
|
# add additional features
|
2023-04-10 21:50:40 +02:00
|
|
|
data["month"] = data.date.dt.month.astype(str).astype("category") # categories have be strings
|
2022-08-12 11:39:22 -04:00
|
|
|
data["log_volume"] = np.log(data.volume + 1e-8)
|
2023-04-10 21:50:40 +02:00
|
|
|
data["avg_volume_by_sku"] = data.groupby(["time_idx", "sku"], observed=True).volume.transform("mean")
|
|
|
|
data["avg_volume_by_agency"] = data.groupby(["time_idx", "agency"], observed=True).volume.transform("mean")
|
2022-08-12 11:39:22 -04:00
|
|
|
# we want to encode special days as one variable and thus need to first reverse one-hot encoding
|
|
|
|
special_days = [
|
|
|
|
"easter_day",
|
|
|
|
"good_friday",
|
|
|
|
"new_year",
|
|
|
|
"christmas",
|
|
|
|
"labor_day",
|
|
|
|
"independence_day",
|
|
|
|
"revolution_day_memorial",
|
|
|
|
"regional_games",
|
|
|
|
"beer_capital",
|
|
|
|
"music_fest",
|
|
|
|
]
|
2023-04-10 21:50:40 +02:00
|
|
|
data[special_days] = data[special_days].apply(lambda x: x.map({0: "-", 1: x.name})).astype("category")
|
2022-08-12 11:39:22 -04:00
|
|
|
return data, special_days
|
|
|
|
|
|
|
|
|
|
|
|
def test_forecast_panel(budget=5):
|
|
|
|
data, special_days = get_stalliion_data()
|
|
|
|
time_horizon = 6 # predict six months
|
|
|
|
training_cutoff = data["time_idx"].max() - time_horizon
|
|
|
|
data["time_idx"] = data["time_idx"].astype("int")
|
|
|
|
ts_col = data.pop("date")
|
|
|
|
data.insert(0, "date", ts_col)
|
|
|
|
# FLAML assumes input is not sorted, but we sort here for comparison purposes with y_test
|
|
|
|
data = data.sort_values(["agency", "sku", "date"])
|
|
|
|
X_train = data[lambda x: x.time_idx <= training_cutoff]
|
|
|
|
X_test = data[lambda x: x.time_idx > training_cutoff]
|
|
|
|
y_train = X_train.pop("volume")
|
|
|
|
y_test = X_test.pop("volume")
|
|
|
|
automl = AutoML()
|
|
|
|
settings = {
|
|
|
|
"time_budget": budget, # total running time in seconds
|
|
|
|
"metric": "mape", # primary metric
|
|
|
|
"task": "ts_forecast_panel", # task type
|
|
|
|
"log_file_name": "test/stallion_forecast.log", # flaml log file
|
|
|
|
"eval_method": "holdout",
|
|
|
|
}
|
|
|
|
fit_kwargs_by_estimator = {
|
|
|
|
"tft": {
|
|
|
|
"max_encoder_length": 24,
|
|
|
|
"static_categoricals": ["agency", "sku"],
|
|
|
|
"static_reals": ["avg_population_2017", "avg_yearly_household_income_2017"],
|
|
|
|
"time_varying_known_categoricals": ["special_days", "month"],
|
|
|
|
"variable_groups": {
|
|
|
|
"special_days": special_days
|
|
|
|
}, # group of categorical variables can be treated as one variable
|
|
|
|
"time_varying_known_reals": [
|
|
|
|
"time_idx",
|
|
|
|
"price_regular",
|
|
|
|
"discount_in_percent",
|
|
|
|
],
|
|
|
|
"time_varying_unknown_categoricals": [],
|
|
|
|
"time_varying_unknown_reals": [
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
"volume", # target column
|
2022-08-12 11:39:22 -04:00
|
|
|
"log_volume",
|
|
|
|
"industry_volume",
|
|
|
|
"soda_volume",
|
|
|
|
"avg_max_temp",
|
|
|
|
"avg_volume_by_agency",
|
|
|
|
"avg_volume_by_sku",
|
|
|
|
],
|
|
|
|
"batch_size": 256,
|
|
|
|
"max_epochs": 1,
|
|
|
|
"gpu_per_trial": -1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""The main flaml automl API"""
|
|
|
|
automl.fit(
|
|
|
|
X_train=X_train,
|
|
|
|
y_train=y_train,
|
|
|
|
**settings,
|
|
|
|
period=time_horizon,
|
|
|
|
group_ids=["agency", "sku"],
|
|
|
|
fit_kwargs_by_estimator=fit_kwargs_by_estimator,
|
|
|
|
)
|
|
|
|
""" retrieve best config and best learner"""
|
|
|
|
print("Best ML leaner:", automl.best_estimator)
|
|
|
|
print("Best hyperparmeter config:", automl.best_config)
|
|
|
|
print(f"Best mape on validation data: {automl.best_loss}")
|
|
|
|
print(f"Training duration of best run: {automl.best_config_train_time}s")
|
|
|
|
print(automl.model.estimator)
|
|
|
|
""" pickle and save the automl object """
|
|
|
|
import pickle
|
|
|
|
|
|
|
|
with open("automl.pkl", "wb") as f:
|
|
|
|
pickle.dump(automl, f, pickle.HIGHEST_PROTOCOL)
|
|
|
|
""" compute predictions of testing dataset """
|
|
|
|
y_pred = automl.predict(X_test)
|
|
|
|
""" compute different metric values on testing dataset"""
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.ml import sklearn_metric_loss_score
|
2022-08-12 11:39:22 -04:00
|
|
|
|
|
|
|
print(y_test)
|
|
|
|
print(y_pred)
|
|
|
|
print("mape", "=", sklearn_metric_loss_score("mape", y_pred, y_test))
|
|
|
|
|
|
|
|
def smape(y_pred, y_test):
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
y_test, y_pred = np.array(y_test), np.array(y_pred)
|
|
|
|
return round(
|
2023-04-10 21:50:40 +02:00
|
|
|
np.mean(np.abs(y_pred - y_test) / ((np.abs(y_pred) + np.abs(y_test)) / 2)) * 100,
|
2022-08-12 11:39:22 -04:00
|
|
|
2,
|
|
|
|
)
|
|
|
|
|
|
|
|
print("smape", "=", smape(y_pred, y_test))
|
|
|
|
# TODO: compute prediction for a specific time series
|
|
|
|
# """compute prediction for a specific time series"""
|
|
|
|
# a01_sku01_preds = automl.predict(X_test[(X_test["agency"] == "Agency_01") & (X_test["sku"] == "SKU_01")])
|
|
|
|
# print("Agency01 SKU_01 predictions: ", a01_sku01_preds)
|
2022-12-06 20:46:08 +00:00
|
|
|
from flaml.automl.data import get_output_from_log
|
2022-08-12 11:39:22 -04:00
|
|
|
|
|
|
|
(
|
|
|
|
time_history,
|
|
|
|
best_valid_loss_history,
|
|
|
|
valid_loss_history,
|
|
|
|
config_history,
|
|
|
|
metric_history,
|
|
|
|
) = get_output_from_log(filename=settings["log_file_name"], time_budget=budget)
|
|
|
|
for config in config_history:
|
|
|
|
print(config)
|
|
|
|
print(automl.resource_attr)
|
|
|
|
print(automl.max_resource)
|
|
|
|
print(automl.min_resource)
|
|
|
|
|
|
|
|
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
def test_cv_step():
|
|
|
|
n = 300
|
|
|
|
time_col = "date"
|
|
|
|
df = pd.DataFrame(
|
|
|
|
{
|
|
|
|
time_col: pd.date_range(start="1/1/2001", periods=n, freq="D"),
|
|
|
|
"y": np.sin(np.linspace(start=0, stop=200, num=n)),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def split_by_date(df: pd.DataFrame, dt: datetime.date):
|
|
|
|
dt = datetime.datetime(dt.year, dt.month, dt.day)
|
|
|
|
return df[df[time_col] <= dt], df[df[time_col] > dt]
|
|
|
|
|
|
|
|
horizon = 60
|
|
|
|
data_end = df.date.max()
|
|
|
|
train_end = data_end - datetime.timedelta(days=horizon)
|
|
|
|
|
|
|
|
train_df, val_df = split_by_date(df, train_end)
|
|
|
|
from flaml import AutoML
|
|
|
|
|
|
|
|
tgts = ["y"]
|
|
|
|
# tgt = "SERIES_SANCTIONS"
|
|
|
|
|
|
|
|
preds = {}
|
|
|
|
for tgt in tgts:
|
|
|
|
features = [] # [c for c in train_df.columns if "SERIES" not in c and c != time_col]
|
|
|
|
|
|
|
|
automl = AutoML(time_budget=5, metric="mae", task="ts_forecast", eval_method="cv")
|
|
|
|
|
|
|
|
automl.fit(
|
|
|
|
dataframe=train_df[[time_col] + features + [tgt]],
|
|
|
|
label=tgt,
|
|
|
|
period=horizon,
|
|
|
|
time_col=time_col,
|
|
|
|
verbose=4,
|
|
|
|
n_splits=5,
|
|
|
|
cv_step_size=5,
|
|
|
|
)
|
|
|
|
|
|
|
|
pred = automl.predict(val_df)
|
|
|
|
|
|
|
|
if isinstance(pred, pd.DataFrame):
|
|
|
|
pred = pred[tgt]
|
|
|
|
assert not np.isnan(pred.sum())
|
|
|
|
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
|
preds[tgt] = pred
|
|
|
|
# plt.figure(figsize=(16, 8), dpi=80)
|
|
|
|
# plt.plot(df[time_col], df[tgt])
|
|
|
|
# plt.plot(val_df[time_col], pred)
|
|
|
|
# plt.legend(["actual", "predicted"])
|
|
|
|
# plt.show()
|
|
|
|
|
|
|
|
print("yahoo!")
|
|
|
|
|
|
|
|
|
2021-08-23 16:26:46 -04:00
|
|
|
if __name__ == "__main__":
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
# test_forecast_automl(60)
|
|
|
|
# test_multivariate_forecast_num(5)
|
|
|
|
# test_multivariate_forecast_cat(5)
|
|
|
|
# test_numpy()
|
|
|
|
# test_forecast_classification(5)
|
2022-08-12 11:39:22 -04:00
|
|
|
test_forecast_panel(5)
|
Factor out time series-related functionality into a time series Task object (#989)
* Refactor into automl subpackage
Moved some of the packages into an automl subpackage to tidy before the
task-based refactor. This is in response to discussions with the group
and a comment on the first task-based PR.
Only changes here are moving subpackages and modules into the new
automl, fixing imports to work with this structure and fixing some
dependencies in setup.py.
* Fix doc building post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Fix broken links in website post automl subpackage refactor
* Remove vw from test deps as this is breaking the build
* Move default back to the top-level
I'd moved this to automl as that's where it's used internally, but had
missed that this is actually part of the public interface so makes sense
to live where it was.
* Re-add top level modules with deprecation warnings
flaml.data, flaml.ml and flaml.model are re-added to the top level,
being re-exported from flaml.automl for backwards compatability. Adding
a deprecation warning so that we can have a planned removal later.
* Fix model.py line-endings
* WIP
* WIP - Notes below
Got to the point where the methods from AutoML are pulled to
GenericTask. Started removing private markers and removing the passing
of automl to these methods. Done with decide_split_type, started on
prepare_data. Need to do the others after
* Re-add generic_task
* Most of the merge done, test_forecast_automl fit succeeds, fails at predict()
* Remaining fixes - test_forecast.py passes
* Comment out holidays-related code as it's not currently used
* Further holidays cleanup
* Fix imports in a test
* tidy up validate_data in time series task
* Test fixes
* Fix tests: add Task.__str__
* Fix tests: test for ray.ObjectRef
* Hotwire TS_Sklearn wrapper to fix test fail
* Attempt at test fix
* Fix test where val_pred_y is a list
* Attempt to fix remaining tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Push to retrigger tests
* Remove plots from automl/test_forecast
* Remove unused data size field from Task
* Fix import for CLASSIFICATION in notebook
* Monkey patch TFT to avoid plotting, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Monkey patch TFT to avoid plotting v2, to fix tests on MacOS
* Fix circular import
* remove redundant code in task.py post-merge
* Fix test: set svd_solver="full" in PCA
* Update flaml/automl/data.py
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* Fix review comments
* Fix task -> str in custom learner constructor
* Remove unused CLASSIFICATION imports
* Hotwire TS_Sklearn wrapper to fix test fail by setting
optimizer_for_horizon == False
* Revert changes to the automl_classification and pin FLAML version
* Fix imports in reverted notebook
* Fix FLAML version in automl notebooks
* Fix ml.py line endings
* Fix CLASSIFICATION task import in automl_classification notebook
* Uncomment pip install in notebook and revert import
Not convinced this will work because of installing an older version of
the package into the environment in which we're running the tests, but
let's see.
* Revert c6a5dd1a0
* Fix get_classification_objective import in suggest.py
* Remove hcrystallball docs reference in TS_Sklearn
* Merge markharley:extract-task-class-from-automl into this
* Fix import, remove smooth.py
* Fix dependencies to fix TFT fail on Windows Python 3.8 and 3.9
* Add tensorboardX dependency to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Set pytorch-lightning==1.9.0 to fix TFT fail on Windows Python 3.8 and 3.9
* Disable PCA reduction of lagged features for now, to fix svd convervence fail
* Merge flaml/main into time_series_task
* Attempt to fix formatting
* Attempt to fix formatting
* tentatively implement holt-winters-no covariates
* fix forecast method, clean class
* checking external regressors too
* update test forecast
* remove duplicated test file, re-add sarimax, search space cleanup
* Update flaml/automl/model.py
removed links. Most important one probably was: https://robjhyndman.com/hyndsight/ets-regressors/
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
* prevent short series
* add docs
* First attempt at merging Holt-Winters
* Linter fix
* Add holt-winters to TimeSeriesTask.estimators
* Fix spark test fail
* Attempt to fix another spark test fail
* Attempt to fix another spark test fail
* Change Black max line length to 127
* Change Black max line length to 120
* Add logging for ARIMA params, clean up time series models inheritance
* Add more logging for missing ARIMA params
* Remove a meaningless test causing a fail, add stricter check on ARIMA params
* Fix a bug in HoltWinters
* A pointless change to hopefully trigger the on and off KeyError in ARIMA.fit()
* Fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Attempt to fix formatting
* Add type annotations to _train_with_config() in state.py
* Add type annotations to prepare_sample_train_data() in state.py
* Add docstring for time_col argument of AutoML.fit()
* Address @sonichi's comments on PR
* Fix formatting
* Fix formatting
* Reduce test time budget
* Reduce test time budget
* Increase time budget for the test to pass
* Remove redundant imports
* Remove more redundant imports
* Minor fixes of points raised by Qingyun
* Try to fix pandas import fail
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Try to fix pandas import fail, again
* Formatting fixes
* More formatting fixes
* Added test that loops over TS models to ensure coverage
* Fix formatting issues
* Fix more formatting issues
* Fix random fail in check
* Put back in tests for ARIMA predict without fit
* Put back in tests for lgbm
* Update test/test_model.py
cover dedup
* Match target length to X length in missing test
---------
Co-authored-by: Mark Harley <mark.harley@transferwise.com>
Co-authored-by: Mark Harley <mharley.code@gmail.com>
Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu>
Co-authored-by: Chi Wang <wang.chi@microsoft.com>
Co-authored-by: Andrea W <a.ruggerini@ammagamma.com>
Co-authored-by: Andrea Ruggerini <nescio.adv@gmail.com>
Co-authored-by: Egor Kraev <Egor.Kraev@tw.com>
Co-authored-by: Li Jiang <bnujli@gmail.com>
2023-06-19 12:20:32 +01:00
|
|
|
# test_cv_step()
|