0

私は線形単層パーセプトロン(つまり、隠れ層なし、すべての入力をすべての出力に接続し、線形活性化関数)を構築しようとしています。デルタルールは、私は期待している結果を得ることはありません。私は損失関数として平均二乗誤差を使用していますが、であるべきであり、単純にlearning_rate * error(* 2)の重み更新となりますが、何らかの形で結果が私の手動計算と大きく異なって見えます。私は何が欠けていますか?ケラでデルタルールを使用する

import numpy as np 
from keras.models import Sequential 
from keras.optimizers import SGD 
from keras.layers import Dense 

features = np.array([[1,0,1],[0,1,1]]) 
features = np.tile(features, (500,1)) 
labels = np.array([[1,0],[0,1]]) 
labels = np.tile(labels, (500,1)) 

network = Sequential() 
network.add(Dense(2, input_dim = 3, init = "zero", activation = "linear")) 
network.compile(loss = "mse", optimizer = SGD(lr = 0.01)) 
network.fit(features, labels, nb_epoch = 1, batch_size = 1, shuffle = False) 

network.get_weights() 
# [[ 0.59687883, -0.39686254], 
# [-0.39689422, 0.59687883], 
# [ 0.19998412, 0.20001581]], 

# manually 
weights = np.array([[0.0,0.0],[0.0,0.0],[0.0,0.0]]) 
for i in range(500): 
    summed_out1 = weights[0,0] + weights[2,0] 
    summed_out2 = weights[0,1] + weights[2,1] 
    change_out1 = 0.01 * (1.0 - summed_out1) 
    change_out2 = 0.01 * (0.0 - summed_out2) 
    weights[0,0] += change_out1 
    weights[2,0] += change_out1 
    weights[0,1] += change_out2 
    weights[2,1] += change_out2 
    # 
    summed_out1 = weights[1,0] + weights[2,0] 
    summed_out2 = weights[1,1] + weights[2,1] 
    change_out1 = 0.01 * (0.0 - summed_out1) 
    change_out2 = 0.01 * (1.0 - summed_out2) 
    weights[1,0] += change_out1 
    weights[2,0] += change_out1 
    weights[1,1] += change_out2 
    weights[2,1] += change_out2 

weights 
# [[ 0.66346388, -0.33011442], 
# [-0.33014677, 0.66346388], 
# [ 0.33331711, 0.33334946]] 

答えて

0

問題が見つかりました。デフォルトでは、高密度レイヤにはバイアスが含まれています。一度変更すると、ネットワークは目的の動作を示します。

関連する問題