|
15 | 15 | * Forecasts are desired for the future immediately following the most recent data. |
16 | 16 |
|
17 | 17 | # Latest |
18 | | -* Fixed horizontal ensembles running in univariate cases (they are explicitly multivariate) |
19 | | -* 'superfast' transformer list added |
20 | | -* test on Mac for the first time, everything seems to work except lightgbm |
21 | | -* include first actual unittests (from existing test.py runs) |
22 | | -* slight change to random template generation to make sure all models are choosen at least once |
23 | | -* cleaned up PredictWitch -> model_forecast() a bit so that users can use it to run single models from parameters directly |
24 | | -* added load_live_daily() example data and spruced up production_example.py |
25 | | -* tried in vain to make a quiet verbosity option for GluonTS |
26 | | -* added create_lagged_regressor |
27 | | -* added Greykite model (additional regressors not working yet) |
28 | | -* fixed regressors bug in Prophet |
29 | | -* added a simple plot method to PredictionObject |
30 | | -* fix for deprecation warning in GLS |
| 18 | +* improvements to joblib parallelized models (not copying the full df) |
| 19 | +* additonal parameter checks |
| 20 | +* made "auto" cpu_count even more conservative |
| 21 | +* improved 'Score' generation. It should now be more equally weighted across metrics. |
| 22 | +* fixed potential bug for horizontal ensemble selection if perfect forecasts were delivered |
| 23 | +* Horizontal ensembles now chosen by combination of multiple metrics and metric_weighting (mae, rmse, spl, contour) |
| 24 | +* re-weighted fillna probabilities for random choice |
| 25 | +* addressed a few deprecation warnings |
| 26 | +* new plot_horizontal() function for AutoTS to quickly visual horizontal ensembles |
| 27 | +* Probabilistic and HDist ensembles are now deprecated (they can still be run by model_forecast but not by AutoTS class) |
| 28 | +* new introduce_na parameter which makes series more robust to the last values being NaN in final but never in any validation |
| 29 | +* Mosaic Ensembles! These can offer major improvements to MAE, but are also less stable than horizontal ensembles. |
31 | 30 |
|
32 | | -# Known Errors: |
| 31 | +# Errors: |
33 | 32 | DynamicFactor holidays Exceptions 'numpy.ndarray' object has no attribute 'values' |
34 | 33 | VECM does not recognize exog to predict |
35 | 34 | ARIMA with User or Holiday ValueError('Can only compare identically-labeled DataFrame objects',) |
|
0 commit comments