📜  输入 lstm - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.797000             🧑  作者: Mango

代码示例1
# LSTM layers work on 3D data with the following structure (nb_sequence, nb_timestep, nb_feature).

# nb_sequence corresponds to the total number of sequences in your dataset (or to the batch size if you are using mini-batch learning).
# nb_timestep corresponds to the size of your sequences.
# nb_feature corresponds to number of features describing each of your timesteps.