Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/models.tft.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ To avoid information bottlenecks from the classic Seq2Seq architecture,
TFT incorporates a decoder-encoder attention mechanism inherited
transformer architectures ([Li et. al
2019](https://arxiv.org/abs/1907.00235), [Vaswani et. al
2017](https://arxiv.org/abs/1706.03762)). It transform the the outputs
2017](https://arxiv.org/abs/1706.03762)). It transforms the outputs
of the LSTM encoded temporal features, and helps the decoder better
capture long-term relationships.

Expand Down
2 changes: 1 addition & 1 deletion nbs/docs/capabilities/predictInsample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"\n",
"*Use Cases*: \n",
"* Debugging: producing insample predictions is useful for debugging purposes. For example, to check if the model is able to fit the train set.\n",
"* Training convergence: check if the the model has converged.\n",
"* Training convergence: check if the model has converged.\n",
"* Anomaly detection: insample predictions can be used to detect anomalous behavior in the train set (e.g. outliers). (Note: if a model is too flexible it might be able to perfectly forecast outliers)"
]
},
Expand Down
2 changes: 1 addition & 1 deletion nbs/docs/tutorials/large_datasets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"source": [
"The standard DataLoader class used by NeuralForecast expects the dataset to be represented by a single DataFrame, which is entirely loaded into memory when fitting the model. However, when the dataset is too large for this, we can instead use the custom large-scale DataLoader. This custom loader assumes that each timeseries is split across a collection of Parquet files, and ensure that only one batch is ever loaded into memory at a given time.\n",
"\n",
"In this notebook, we will demonstrate the expected format of these files, how to train the model and and how to perform inference using this large-scale DataLoader."
"In this notebook, we will demonstrate the expected format of these files, how to train the model and how to perform inference using this large-scale DataLoader."
]
},
{
Expand Down