LSTM return_sequences = True之后报错
return_sequences = True返回整个序列,每一个time step都会输出,比如stack两层LSTM时候要这么设置。return_sequences = False只返回输出序列的最后一个time step的输出如果设置return_sequences = True,该LSTM层会返回每一个time step的h,那么该层返回的就是1个由多个h组成的2维数组了,如...