什么是 LSTM RNN 循环神经网络 (深度学习)?
LSTMs for Time Series in PyTorch
I want to know the difference between the LSTM and LSTMCell in the pytorch document?And how to use it correctly.
LSTMCell takes ONE input x_t. You need to make a loop in order to do one pass of backprop through time.
LSTM takes a SEQUENCE of inputs x_1,x_2,…,x_T. No need to write a loop to do one pass of backprop through time.