Displacement monitoring based on long-term and short-term neural network LSTM, displacement prediction based on long-term and short-term neural network, detailed principle of LSTM

Table
of Contents Background
Abstract
Basic definition of LSTM
Steps for LSTM implementation
Displacement monitoring based on long-term and short-term neural network LSTM
Complete code: https://download.csdn.net/download/abc991835105/88098131
Effect diagram
Results analysis
Outlook
Reference paper

back view

Path tracking prediction is of great significance to the realization of automatic flight driving. The long-term and short-term neural network is an improved RNN neural network, which overcomes the problem of gradient explosion. The displacement of the foundation pit is also a time series data, which is carried out by LSTM neural network Prediction, higher accuracy
Abstract
LSTM principle, MATALB programming long-term and short-term neural network LSTM displacement monitoring.

Basic definition of LSTM

LSTM is a type of neural network that contains LSTM blocks (blocks) or others. In literature or other materials, LSTM blocks may be described as intelligent network units because they can memorize values ​​of indefinite length of time. There is a The gate can determine whether the input is important enough to be remembered and whether it can be output.
There are four S function units at the bottom of Figure 1. The leftmost function may become the input of the block according to the situation. The three on the right will pass through the gate to determine whether the input can be passed to the block. The second on the left is the input gate. If the output here is similar If it is at zero, the value here will be blocked and will not enter the next layer. The third one from the left is the forget gate, when this produces a value close to zero, the value remembered in the block will be forgotten. The fourth and rightmost input is the output gate, which can determine whether the input in the block memory can be output.
Figure 1 LSTM model
Figure 1 LSTM model
There are many versions of LSTM, one of the important versions is GRU (Gated Recurrent Unit)

Guess you like

Origin blog.csdn.net/abc991835105/article/details/131948505