You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ Pytorch Forecasting aims to ease timeseries forecasting with neural networks for
10
10
for real-world deployment and come with in-built interpretation capabilities
11
11
- Multi-horizon timeseries metrics
12
12
- Ranger optimizer for faster model training
13
+
- Hyperparameter tuning with [optuna](https://optuna.readthedocs.io/)
13
14
14
15
The package is built on [pytorch-lightning])(https://pytorch-lightning.readthedocs.io/) to allow training on CPUs, single and multiple GPUs out-of-the-box.
15
16
@@ -28,7 +29,7 @@ Visit the documentation at [https://pytorch-forecasting.readthedocs.io](https://
28
29
# Available models
29
30
30
31
-[Temporal Fusion Transformers for Interpretable Multi-horizon Time Series Forecasting](https://arxiv.org/pdf/1912.09363.pdf)
31
-
-[N-Beats](http://arxiv.org/abs/1905.10437)
32
+
-[N-BEATS: Neural basis expansion analysis for interpretable time series forecasting](http://arxiv.org/abs/1905.10437)
Copy file name to clipboardExpand all lines: docs/source/models.rst
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,9 @@ Pytorch Forecasting provides a ``.from_dataset()`` method for each model that
11
11
takes a :py:class:`~data.timeseries.TimeSeriesDataSet` and additional parameters
12
12
that cannot directy derived from the dataset such as, e.g. ``learning_rate`` or ``hidden_size``.
13
13
14
+
To tune models, `optuna <https://optuna.readthedocs.io/>`_ can be used. For example, tuning of the :py:class:`~models.temporal_fusion_transformer.TemporalFusionTransformer`
15
+
is implemented by :py:func:`~models.temporal_fusion_transformer.tuning.optimize_hyperparameters`
0 commit comments