|
4 | 4 | Darts is still in an early development phase and we cannot always guarantee backwards compatibility. Changes that may **break code which uses a previous release of Darts** are marked with a "🔴".
|
5 | 5 |
|
6 | 6 | ## [Unreleased](https://github.com/unit8co/darts/tree/master)
|
7 |
| -[Full Changelog](https://github.com/unit8co/darts/compare/0.11.0...master) |
| 7 | +[Full Changelog](https://github.com/unit8co/darts/compare/0.12.0...master) |
| 8 | + |
| 9 | +## [0.12.0](https://github.com/unit8co/darts/tree/0.12.0) (2021-09-25) |
| 10 | +### For users of the library: |
| 11 | + |
| 12 | +**Added**: |
| 13 | +- Improved probabilistic forecasting with neural networks |
| 14 | + - Now all neural networks based forecasting models (except `NBEATSModel`) support probabilistic forecasting, |
| 15 | + by providing the `likelihood` parameter to the model's constructor method. |
| 16 | + - `darts.utils.likelihood_models` now contains many more distributions. The complete list of likelihoods |
| 17 | + available to train neural networks based models is |
| 18 | + available here: https://unit8co.github.io/darts/generated_api/darts.utils.likelihood_models.html |
| 19 | + - Many of the available likelihood models now offer the possibility to specify "priors" on the distribution's |
| 20 | + parameters. Specifying such priors will regularize the training loss to make the output distribution |
| 21 | + more like the one specified by the prior parameters values. |
| 22 | +- Performance improvements on `TimeSeries` creation. creating `TimeSeries` is now be significantly faster, |
| 23 | + especially for large series, and filling missing dates has also been significantly sped up. |
| 24 | +- New rho-risk metric for probabilistic forecasts. |
| 25 | +- New method `darts.utils.statistics.plot_hist()` to plot histograms of time series data (e.g. backtest errors). |
| 26 | +- New argument `fillna_value` to `TimeSeries` factory methods, allowing to specify a value to fill missing dates |
| 27 | +(instead of `np.nan`). |
| 28 | +- Synthetic `TimeSeries` generated with `darts.utils.timeseries_generation` methods can now be integer-index |
| 29 | +(just pass an integer instead of a timestamp for the `start` argument). |
| 30 | +- Removed some deprecation warnings |
| 31 | +- Updated conda installation instructions |
| 32 | + |
| 33 | +**Fixed:** |
| 34 | +- Removed [extra 1x1 convolutions](https://github.com/unit8co/darts/issues/470) in TCN Model. |
| 35 | +- Fixed an issue with linewidth parameter when plotting `TimeSeries`. |
| 36 | +- Fixed a column name issue in datetime attribute time series. |
| 37 | + |
| 38 | +### For developers of the library: |
| 39 | +- We have removed the `develop` branch. |
| 40 | +- We force sklearn<1.0 has we have observed issues with pmdarima and sklearn==1.0 |
8 | 41 |
|
9 | 42 | ## [0.11.0](https://github.com/unit8co/darts/tree/0.11.0) (2021-09-04)
|
10 | 43 | ### For users of the library:
|
|
0 commit comments