-
Notifications
You must be signed in to change notification settings - Fork 505
docs: improve forecasting model search metadata #1594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| --- | ||
| description: >- | ||
| iTransformer: Inverted Transformer architecture for multivariate time series forecasting with attention on time points and feed-forward on series dimensions. | ||
| Build multivariate forecasts with iTransformer in NeuralForecast. Learn its inverted attention architecture, parameters, and Python workflow. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Marco (@marcopeix), Ibidem |
||
| output-file: models.itransformer.html | ||
| title: iTransformer | ||
| title: iTransformer Time Series Forecasting in Python | ||
| --- | ||
|
|
||
| The iTransformer model simply takes the Transformer architecture but it | ||
|
|
@@ -79,4 +79,4 @@ ax.set_ylabel('Monthly Passengers', fontsize=20) | |
| ax.set_xlabel('Year', fontsize=20) | ||
| ax.legend(prop={'size': 15}) | ||
| ax.grid() | ||
| ``` | ||
| ``` | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| --- | ||
| description: >- | ||
| KAN: Kolmogorov-Arnold Networks for time series forecasting. MLP alternative using learnable activation functions for improved non-linear pattern modeling. | ||
| Build time series forecasts with Kolmogorov Arnold Networks in NeuralForecast. Compare KAN with MLP models and run a complete Python example. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe I missed something but I did not see any complete python example or comparison with MLP models. |
||
| output-file: models.kan.html | ||
| title: KAN | ||
| title: KAN Time Series Forecasting in Python | ||
| --- | ||
|
|
||
| Kolmogorov-Arnold Networks (KANs) are an alternative to Multi-Layer | ||
|
|
@@ -78,4 +78,4 @@ plt.grid() | |
|
|
||
| ::: neuralforecast.models.kan.KANLinear | ||
| options: | ||
| members: [] | ||
| members: [] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| --- | ||
| description: >- | ||
| PatchTST: Efficient Transformer model for multivariate forecasting using patched time series and channel-independence for scalable long-term predictions. | ||
| Build long horizon forecasts with PatchTST in NeuralForecast. Learn how temporal patches and channel independence work, then run a complete Python example. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO the original description is correct. |
||
| output-file: models.patchtst.html | ||
| title: PatchTST | ||
| title: PatchTST Time Series Forecasting in Python | ||
| --- | ||
|
|
||
| The PatchTST model is an efficient Transformer-based model for | ||
|
|
@@ -144,4 +144,4 @@ else: | |
|
|
||
| ::: neuralforecast.models.patchtst.PatchTST_backbone | ||
| options: | ||
| members: [] | ||
| members: [] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| --- | ||
| description: >- | ||
| TFT: Temporal Fusion Transformer with interpretable multi-horizon forecasting. LSTM encoder, multi-head attention, variable selection for complex time series. | ||
| Build interpretable forecasts with Temporal Fusion Transformer in NeuralForecast using static, historic, and future variables in Python. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some important info is lost on this new description |
||
| output-file: models.tft.html | ||
| title: TFT | ||
| title: Temporal Fusion Transformer Forecasting in Python | ||
| --- | ||
|
|
||
| In summary Temporal Fusion Transformer (TFT) combines gating layers, an | ||
|
|
@@ -469,4 +469,3 @@ mechanism has a great resemblence to a single attention layer, but it | |
| allows for $M$ multiple attention weights, and can be therefore be | ||
| interpreted as the average ensemble of $M$ single attention layers. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Marco (@marcopeix), I don't think this description is accurate (no complete worklow) and it looses some of the important details.