From 315cb6f8d601d2c292a8c830051d64b54bf4b0ff Mon Sep 17 00:00:00 2001 From: Dennis Bader Date: Fri, 19 Jan 2024 15:29:38 +0100 Subject: [PATCH] fix torch covariates support tables in user guide (#2172) --- docs/userguide/torch_forecasting_models.md | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/userguide/torch_forecasting_models.md b/docs/userguide/torch_forecasting_models.md index af5c7b92f4..0c2ba84fde 100644 --- a/docs/userguide/torch_forecasting_models.md +++ b/docs/userguide/torch_forecasting_models.md @@ -95,27 +95,27 @@ Under the hood, Darts has 5 types of `{X}CovariatesModel` classes implemented to | Class | past covariates | future past covariates | future covariates | historic future covariates | |-------------------------|:---------------:|:----------------------:|:-----------------:|:--------------------------:| -| `PastCovariatesModel` | ✅ | ✅ | | | -| `FutureCovariatesModel` | | | ✅ | | -| `DualCovariatesModel` | | | ✅ | ✅ | -| `MixedCovariatesModel` | ✅ | ✅ | ✅ | ✅ | -| `SplitCovariatesModel` | ✅ | ✅ | ✅ | | +| `PastCovariatesModel` | ✅ | ✅ | | | +| `FutureCovariatesModel` | | | ✅ | | +| `DualCovariatesModel` | | | ✅ | ✅ | +| `SplitCovariatesModel` | ✅ | ✅ | ✅ | | +| `MixedCovariatesModel` | ✅ | ✅ | ✅ | ✅ | **Table 1: Darts' "{X}CovariatesModels" covariate support** Each Torch Forecasting Model inherits from one `{X}CovariatesModel` (covariate class names are abbreviated by the `X`-part): -| TFM | `Past` | `Future` | `Dual` | `Mixed` | `Split` | +| TFM | `Past` | `Future` | `Dual` | `Split` | `Mixed` | |--------------------|:------:|:--------:|:------:|:-------:|:-------:| -| `RNNModel` | | | ✅ | | | -| `BlockRNNModel` | ✅ | | | | | -| `NBEATSModel` | ✅ | | | | | -| `TCNModel` | ✅ | | | | | -| `TransformerModel` | ✅ | | | | | -| `TFTModel` | | | | ✅ | | -| `NLinearModel` | | | | ✅ | | -| `DLinearModel` | | | | ✅ | | -| `TiDEModel` | | | | ✅ | | +| `RNNModel` | | | ✅ | | | +| `BlockRNNModel` | ✅ | | | | | +| `NBEATSModel` | ✅ | | | | | +| `TCNModel` | ✅ | | | | | +| `TransformerModel` | ✅ | | | | | +| `TFTModel` | | | | | ✅ | +| `NLinearModel` | | | | | ✅ | +| `DLinearModel` | | | | | ✅ | +| `TiDEModel` | | | | | ✅ | **Table 2: Darts' Torch Forecasting Model covariate support**