From 81e592198c825cd70a4d89029e0f3873cd9233a3 Mon Sep 17 00:00:00 2001 From: Dennis Bader Date: Mon, 7 Apr 2025 20:33:59 +0200 Subject: [PATCH 1/3] add `uses_exog = True` to AutoMFLES --- python/statsforecast/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/statsforecast/models.py b/python/statsforecast/models.py index fa8875503..8a8e99047 100644 --- a/python/statsforecast/models.py +++ b/python/statsforecast/models.py @@ -1367,6 +1367,8 @@ class AutoMFLES(_TS): Custom name of the model. """ + uses_exog = True + def __init__( self, test_size: int, From 4d5f3d4089e85df7165b3fc12f1850324ae3b5ed Mon Sep 17 00:00:00 2001 From: Dennis Bader Date: Mon, 7 Apr 2025 20:50:50 +0200 Subject: [PATCH 2/3] Update models.ipynb --- nbs/src/core/models.ipynb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nbs/src/core/models.ipynb b/nbs/src/core/models.ipynb index 9e2fad883..402260117 100644 --- a/nbs/src/core/models.ipynb +++ b/nbs/src/core/models.ipynb @@ -2381,6 +2381,8 @@ " alias : str (default='AutoMFLES')\n", " Custom name of the model.\n", " \"\"\"\n", + " uses_exog=True\n", + "\n", " def __init__(\n", " self,\n", " test_size: int,\n", From 181e85617e8deac83ad046d7a798e6336fbdee7c Mon Sep 17 00:00:00 2001 From: Dennis Bader Date: Mon, 7 Apr 2025 20:51:52 +0200 Subject: [PATCH 3/3] revert changes to models.py --- python/statsforecast/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/statsforecast/models.py b/python/statsforecast/models.py index 8a8e99047..fa8875503 100644 --- a/python/statsforecast/models.py +++ b/python/statsforecast/models.py @@ -1367,8 +1367,6 @@ class AutoMFLES(_TS): Custom name of the model. """ - uses_exog = True - def __init__( self, test_size: int,