LSTM for time series prediction

By KDnuggets - 2021-01-23

Description

Learn how to develop a LSTM neural network with PyTorch on trading data to predict future prices by mimicking actual values of the time series data.

Summary

  • Orthogonal Matrix What is an Orthogonal Matrix?
  • In terms of geometry, orthogonal means that two vectors are perpendicular to each other.
  • Additionally you may select any two rows and find that the same property holds, as the transpose of an orthogonal matrix is itself an orthogonal matrix.
  • Because the transpose preserves the determinant, it is easy to show that the determinant of an orthogonal matrix must be equal to 1 or -1.

 

Topics

  1. Machine_Learning (0.21)
  2. Backend (0.17)
  3. NLP (0.14)

Similar Articles

Creating synthetic time series data

By Medium - 2021-02-22

We synthetic versions of a time-series dataset, visualize and analyze the results, and discuss several use cases for synthetic time series data.

Facebook’s Prophet + Deep Learning = NeuralProphet

By Medium - 2020-12-10

While learning about time series forecasting, sooner or later you will encounter the vastly popular Prophet model, developed by Facebook. It gained lots of popularity due to the fact that it provides…