From 3503b4145ac1b31a229c6b62b8312c1c57469e9c Mon Sep 17 00:00:00 2001 From: Bohdan Bilonoh Date: Wed, 27 Mar 2024 19:18:03 +0200 Subject: [PATCH] update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 258086b94e..d16f498cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,6 +88,8 @@ but cannot always guarantee backwards compatibility. Changes that may **break co - Renamed the private `_is_probabilistic` property to a public `supports_probabilistic_prediction`. - Improvements to `DataTransformer`: [#2267](https://github.com/unit8co/darts/pull/2267) by [Alicja Krzeminska-Sciga](https://github.com/alicjakrzeminska). - `InvertibleDataTransformer` now supports parallelized inverse transformation for `series` being a list of lists of `TimeSeries` (`Sequence[Sequence[TimeSeries]]`). This `series` type represents for example the output from `historical_forecasts()` when using multiple series. +- Improvements to `TorchForecastingModel`: [#2295](https://github.com/unit8co/darts/pull/2295) by [Bohdan Bilonoh](https://github.com/BohdanBilonoh). + - Added `pin_memory`, `prefetch_factor` and `persistent_workers` parameters to `fit()` and `predict()` methods of PyTorch-based models, **Fixed** - Fixed a bug in `quantile_loss`, where the loss was computed on all samples rather than only on the predicted quantiles. [#2284](https://github.com/unit8co/darts/pull/2284) by [Dennis Bader](https://github.com/dennisbader).