gpt4 book ai didi

python - 神经网络在简单的线性插值任务中表现不佳

转载 作者:太空宇宙 更新时间:2023-11-04 04:47:56 24 4
gpt4 key购买 nike

仅供引用:我上传了您自己测试所需的所有内容(数据 + 简化的脚本)。

这是我的问题:我试图训练一个使用四个输入值的非常简单的模型x(0), x(1), x(2), x(3)预测值 x(4),即 y = x(4)。

但是,我修改了数据,使得 y = x(4) 是一个完美的线性外推:y = x(3) + (x(3)-x(2))

我使用的模型是一个具有四个神经元的致密层。权重“0 0 -1 2”将是一个完美的解决方案(丢失“0”)。

但是,我无法让它达到这些值。

你能帮忙或告诉我,为什么吗?

文件在这里:https://ufile.io/5d2t4

主脚本(人工数据):

import numpy as np
import matplotlib.pyplot as plt
from keras.models import Sequential
from keras.layers import Flatten, Dense
from keras.optimizers import Adadelta, Adam
import keras.backend as K

def root_mean_squared_error(y_true, y_pred):
return K.sqrt( K.mean( K.square( y_pred - y_true ) ) )

X_train = np.random.random(240000*4)
X_train = np.reshape( X_train, ( 240000, 1, 4 ) )

# predict the gradient of the
y_train = X_train[:,0,3] - X_train[:,0,2]


inputShape = ( X_train.shape[1], X_train.shape[2] )


# create model
model = Sequential()
model.add( Flatten( input_shape=inputShape ) )
model.add( Dense( 1 ) )


model.compile( loss=root_mean_squared_error, optimizer=Adam( decay = 0.1 ) )

# train model
batchSize = 8

model.fit( X_train, y_train, nb_epoch=10, batch_size=batchSize, shuffle=True )

y_train_predicted = model.predict( X_train)
y_train_predicted = np.asarray(y_train_predicted).ravel()

y_train_predicted_rmse = np.sqrt( np.mean( np.square( y_train_predicted - y_train ) ) )

print( "y_train RMSE = " + str( y_train_predicted_rmse ) )

最佳答案

当我的“明显”模型不收敛时,我首先问自己的是超参数是否合适。

我调整了您的代码以修复学习率。我删除了衰减并添加了 0.01 的学习率而不是默认的 0.001(参见 https://keras.io/optimizers/)。一个epoch后的权重为

    [ 9.3402149e-04],
[ 5.8139337e-04],
[-9.9929601e-01],
[ 1.0009530e+00]

这大约是我们在代码中设置的。

    [0, 0, -1, 1] 

如果您只是保持默认学习率 (0.001) 没有衰减,它也可以正常工作。在下面找到工作代码。

import numpy as np
import matplotlib.pyplot as plt
from keras.models import Sequential
from keras.layers import Flatten, Dense
from keras.optimizers import Adadelta, Adam
import keras.backend as K

def root_mean_squared_error(y_true, y_pred):
return K.sqrt( K.mean( K.square( y_pred - y_true ) ) )

X_train = np.random.random(240000*4)
X_train = np.reshape( X_train, ( 240000, 1, 4 ) )

y_train = X_train[:,0,3] - X_train[:,0,2]

inputShape = ( X_train.shape[1], X_train.shape[2] )

# create model
model = Sequential()
model.add( Flatten( input_shape=inputShape ) )
model.add( Dense( 1 ) )

model.compile( loss=root_mean_squared_error, optimizer=Adam( lr=0.01 ) )

# train model
batchSize = 8

model.fit( X_train, y_train, nb_epoch=1, batch_size=batchSize, shuffle=True )

y_train_predicted = model.predict( X_train)
y_train_predicted = np.asarray(y_train_predicted).ravel()

y_train_predicted_rmse = np.sqrt( np.mean( np.square( y_train_predicted - y_train ) ) )

print( "y_train RMSE = " + str( y_train_predicted_rmse ) )


x = [model.layers]
x[0][1].get_weights()

关于python - 神经网络在简单的线性插值任务中表现不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49088752/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com