1.python ValueError: Input 0 is incompatible with layer dense_1: expected min_ndim=2, found ndim=1
解决:在model的搭建中对输入维度进行设定。model.add(Dense(48, input_dim=1, activation='relu'))
2.AttributeError: 'int' object has no attribute 'ndim'
解决:model fit的训练集和测试集不能是整数。next_state[IDList[i]] = next_state[IDList[i]].flatten()。或者用reshape。
3.state的reshape问题:多维数组变成一维用flatten()比较快。
4.env的reset问题:返回的是self.state,注意类型。