Keras定义LSTM网络参数有报错
今天用Keras写了个LSTM网络,认真按照官方文档写的,但是无论如何都是报参数有错误,原本的写法如下def LSTM(): data_dim = 95 timesteps = 1 # input_dim是输入的train_x的最后一个维度,train_x的维度为(n_samples, time_steps, input_dim) model_1 = Sequen...