我正在使用python 3.5,这里安装了一些软件包:
这是我的代码:
from keras.models import Sequential
from keras.layers import LSTM
model = Sequential()
model.add(LSTM(512, input_shape=(36, 45), return_sequences=True))
这是错误信息:
TypeError: Expected int32, got list containing Tensors of type '_Message' instead.