|
90 | 90 |
|
91 | 91 | try: |
92 | 92 | from darts.models.forecasting.croston import Croston |
93 | | - from darts.models.forecasting.sf_auto_arima import StatsForecastAutoARIMA |
94 | | - from darts.models.forecasting.sf_auto_ces import StatsForecastAutoCES |
95 | | - from darts.models.forecasting.sf_auto_ets import StatsForecastAutoETS |
96 | | - from darts.models.forecasting.sf_auto_mfles import StatsForecastAutoMFLES |
97 | | - from darts.models.forecasting.sf_auto_tbats import StatsForecastAutoTBATS |
98 | | - from darts.models.forecasting.sf_auto_theta import StatsForecastAutoTheta |
| 93 | + from darts.models.forecasting.sf_auto_arima import AutoARIMA |
| 94 | + from darts.models.forecasting.sf_auto_ces import AutoCES |
| 95 | + from darts.models.forecasting.sf_auto_ets import AutoETS |
| 96 | + from darts.models.forecasting.sf_auto_mfles import AutoMFLES |
| 97 | + from darts.models.forecasting.sf_auto_tbats import AutoTBATS |
| 98 | + from darts.models.forecasting.sf_auto_theta import AutoTheta |
99 | 99 |
|
100 | 100 | except ImportError: |
101 | 101 | logger.warning( |
102 | 102 | "The StatsForecast module could not be imported. " |
103 | | - "To enable support for the StatsForecastAutoARIMA, " |
104 | | - "StatsForecastAutoETS and Croston models, please consider " |
| 103 | + "To enable support for the AutoARIMA, " |
| 104 | + "AutoETS and Croston models, please consider " |
105 | 105 | "installing it." |
106 | 106 | ) |
107 | 107 | Croston = NotImportedModule(module_name="StatsForecast", warn=False) |
108 | | - StatsForecastAutoARIMA = NotImportedModule(module_name="StatsForecast", warn=False) |
109 | | - StatsForecastAutoCES = NotImportedModule(module_name="StatsForecast", warn=False) |
110 | | - StatsForecastAutoETS = NotImportedModule(module_name="StatsForecast", warn=False) |
111 | | - StatsForecastAutoMFLES = NotImportedModule(module_name="StatsForecast", warn=False) |
112 | | - StatsForecastAutoTheta = NotImportedModule(module_name="StatsForecast", warn=False) |
113 | | - StatsForecastAutoTBATS = NotImportedModule(module_name="StatsForecast", warn=False) |
| 108 | + AutoARIMA = NotImportedModule(module_name="StatsForecast", warn=False) |
| 109 | + AutoCES = NotImportedModule(module_name="StatsForecast", warn=False) |
| 110 | + AutoETS = NotImportedModule(module_name="StatsForecast", warn=False) |
| 111 | + AutoMFLES = NotImportedModule(module_name="StatsForecast", warn=False) |
| 112 | + AutoTheta = NotImportedModule(module_name="StatsForecast", warn=False) |
| 113 | + AutoTBATS = NotImportedModule(module_name="StatsForecast", warn=False) |
114 | 114 |
|
115 | 115 | try: |
116 | 116 | from darts.models.forecasting.xgboost import XGBModel |
|
158 | 158 | "Prophet", |
159 | 159 | "CatBoostModel", |
160 | 160 | "Croston", |
161 | | - "StatsForecastAutoARIMA", |
162 | | - "StatsForecastAutoCES", |
163 | | - "StatsForecastAutoETS", |
164 | | - "StatsForecastAutoMFLES", |
165 | | - "StatsForecastAutoTheta", |
166 | | - "StatsForecastAutoTBATS", |
| 161 | + "AutoARIMA", |
| 162 | + "AutoCES", |
| 163 | + "AutoETS", |
| 164 | + "AutoMFLES", |
| 165 | + "AutoTheta", |
| 166 | + "AutoTBATS", |
167 | 167 | "XGBModel", |
168 | 168 | "GaussianProcessFilter", |
169 | 169 | "KalmanFilter", |
|
0 commit comments