【发布时间】:2019-12-12 04:49:27
【问题描述】:
我想训练一个基于 numpy 数组的神经网络,该数组有 4 个条目作为 X 数据,另一个数组有一个条目作为 y 数据。
X_train = [x1, x2, x3, x4]
y_train = [y1]
我想到了一件相当简单的事情,但我无法让输入形状工作。我还发现关于输入形状如何工作的信息非常少:你必须只指定 X 数据吗? y 数据呢?
我已经尝试设置 input_dim = 4,因为这是第一个合乎逻辑的事情,但我得到了以下错误:
Error when checking input: expected dense_1_input to have shape (4,) but got array with shape (1,)
然后我尝试设置 input_dim = (4, 1),因为我认为 y 数据导致了该问题。但我又收到一条错误消息:
Error when checking input: expected dense_1_input to have 3 dimensions, but got array with shape (4, 1)
代码如下:
# importing the packages
import gym
import numpy as np
from collections import deque
from keras.models import Sequential
from keras.layers import Dense
from keras.optimizers import Adam
from keras.wrappers.scikit_learn import KerasRegressor
from joblib import Parallel
# creating the environment
env = gym.make('CartPole-v1')
#defining global variables
lr=0.0001
decay=0.001
batch_size=None
# creating a deep learning model with keras
def model():
model = Sequential()
model.add(Dense(64, input_dim=4, activation='relu'))
model.add(Dense(32, activation='relu'))
model.add(Dense(16, activation='relu'))
model.add(Dense(1, activation='sigmoid'))
model.compile(Adam(lr=lr, decay=decay), loss='mse')
model.summary()
return model
# running the game
for i_episodes in range(200):
env.reset()
for i in range(100):
env.render()
action = env.action_space.sample()
observation, reward, done, info = env.step(action)
# observation = ndarray float64
# reward = float
# done = bool
# action = int
# info = empty
observation = np.asarray(observation)
reward = np.asarray(reward)
action = np.asarray(action)
# print(observation.dtype, reward.dtype, action.dtype)
# print(observation.shape, action.shape)
estimator = KerasRegressor(build_fn=model, epochs=30, batch_size=3, verbose=1)
estimator.fit(observation, action)
if done:
break
env.close()
如果有人能解释输入形状的工作原理,将不胜感激。
【问题讨论】: