Skip to content

Commit

Permalink
Merge branch 'master' into feat/time_net_model
Browse files Browse the repository at this point in the history
  • Loading branch information
gdevos010 authored Sep 23, 2024
2 parents 9bbd1c9 + b41be28 commit d60d5e4
Show file tree
Hide file tree
Showing 13 changed files with 1,929 additions and 199 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ but cannot always guarantee backwards compatibility. Changes that may **break co

**Improved**

- Added `IQRDetector`, that allows to detect anomalies using the interquartile range algorithm. [#2441] by [Igor Urbanik](https://github.com/u8-igor).
- Added `IQRDetector`, that allows to detect anomalies using the interquartile range algorithm. [#2441](https://github.com/unit8co/darts/issues/2441) by [Igor Urbanik](https://github.com/u8-igor).
- Added hyperparameters controlling the hidden layer sizes for the feature encoders in `TiDEModel`. [#2408](https://github.com/unit8co/darts/issues/2408) by [eschibli](https://github.com/eschibli).
- Added hyperparameter `activation` to `BlockRNNModel` to specify the activation function in case of a multi-layer output network. [#2408](https://github.com/unit8co/darts/issues/2408) by [eschibli](https://github.com/eschibli).
- Added support for broadcasting to TimeSeries on component and sample level. [#2476](https://https://github.com/unit8co/darts/pull/2476) by [Joel L.](https://github.com/Joelius300).
- Added support for computing metrics, backtest, and residuals on one or multiple quantiles `q`, either from probabilistic predictions or predicted quantiles. [#2530](https://github.com/unit8co/darts/issues/2530) by [Dennis Bader](https://github.com/dennisbader).
- Added quantile interval metrics: `miw` (Mean Interval Width, time aggregated) and `iw` (Interval Width, per time step / non-aggregated) which compute the width of quantile intervals `q_intervals` (expected to be a tuple or sequence of tuples with (lower quantile, upper quantile). [#2530](https://github.com/unit8co/darts/issues/2530) by [Dennis Bader](https://github.com/dennisbader).
- Added property `TimeSeries.shape` to get the shape of the time series. [#2530](https://github.com/unit8co/darts/issues/2530) by [Dennis Bader](https://github.com/dennisbader).
- Added support for parameters `enable_optimization` and `predict_likelihood_parameters` to the forecasting models' `backtest()` and `residuals()` methods. [#2530](https://github.com/unit8co/darts/issues/2530) by [Dennis Bader](https://github.com/dennisbader).
- Helper function `darts.utils.utils.generate_index()` now accepts datetime strings as `start` and `end` parameters to generate the pandas DatetimeIndex. [#2522](https://github.com/unit8co/darts/pull/2522) by [Dennis Bader](https://github.com/dennisbader).
- Various improvements in the documentation:
- Made README's forecasting model support table more colorblind-friendly. [#2433](https://github.com/unit8co/darts/pull/2433)
Expand Down
5 changes: 5 additions & 0 deletions darts/ad/anomaly_model/forecasting_am.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ def fit(
`train_length`.
enable_optimization
Whether to use the optimized version of historical_forecasts when supported and available.
Default: ``True``.
model_fit_kwargs
Parameters to be passed on to the forecast model `fit()` method.
Expand Down Expand Up @@ -212,6 +213,7 @@ def score(
`train_length`.
enable_optimization
Whether to use the optimized version of historical_forecasts when supported and available.
Default: ``True``.
return_model_prediction
Whether to return the forecasting model prediction along with the anomaly scores.
Expand Down Expand Up @@ -299,6 +301,7 @@ def predict_series(
`train_length`.
enable_optimization
Whether to use the optimized version of historical_forecasts when supported and available.
Default: ``True``.
Returns
-------
Expand Down Expand Up @@ -394,6 +397,7 @@ def eval_metric(
`train_length`.
enable_optimization
Whether to use the optimized version of historical_forecasts when supported and available.
Default: ``True``.
metric
The name of the metric function to use. Must be one of "AUC_ROC" (Area Under the
Receiver Operating Characteristic Curve) and "AUC_PR" (Average Precision from scores).
Expand Down Expand Up @@ -499,6 +503,7 @@ def show_anomalies(
`train_length`.
enable_optimization
Whether to use the optimized version of historical_forecasts when supported and available.
Default: ``True``.
anomalies
The ground truth of the anomalies (1 if it is an anomaly and 0 if not).
names_of_scorers
Expand Down
12 changes: 11 additions & 1 deletion darts/metrics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
Metrics
-------
For deterministic forecasts (point predictions with `num_samples == 1`):
For deterministic forecasts (point predictions with `num_samples == 1`), probabilistic forecasts (`num_samples > 1`),
and quantile forecasts. For probablistic and quantile forecasts, use parameter `q` to define the quantile(s) to
compute the deterministic metrics on:
- Aggregated over time:
Absolute metrics:
- :func:`MERR <darts.metrics.metrics.merr>`: Mean Error
Expand Down Expand Up @@ -42,8 +45,10 @@
- Aggregated over time:
- :func:`MQL <darts.metrics.metrics.mql>`: Mean Quantile Loss
- :func:`QR <darts.metrics.metrics.qr>`: Quantile Risk
- :func:`MIW <darts.metrics.metrics.miw>`: Mean Interval Width
- Per time step:
- :func:`QL <darts.metrics.metrics.ql>`: Quantile Loss
- :func:`IW <darts.metrics.metrics.iw>`: Interval Width
For Dynamic Time Warping (DTW) (aggregated over time):
- :func:`DTW <darts.metrics.metrics.dtw_metric>`: Dynamic Time Warping Metric
Expand All @@ -57,11 +62,13 @@
coefficient_of_variation,
dtw_metric,
err,
iw,
mae,
mape,
marre,
mase,
merr,
miw,
mql,
mse,
msse,
Expand Down Expand Up @@ -90,6 +97,7 @@
se,
sle,
sse,
iw,
}

__all__ = [
Expand Down Expand Up @@ -120,4 +128,6 @@
"sle",
"smape",
"sse",
"iw",
"miw",
]
Loading

0 comments on commit d60d5e4

Please sign in to comment.