画像の品質が良いかどうかを判断するための仮説を得るために、コスト関数を最小化する勾配降下アルゴリズムを実装しました。私は Octave でそれを行いました。このアイデアは、Andrew Ng による機械学習クラスのアルゴリズムに何らかの形で基づいています。
したがって、0.5 から ~12 までの値を含む 880 の値 "y" があります。また、「X」には 50 から 300 までの 880 の値があり、画像の品質を予測する必要があります。
悲しいことに、アルゴリズムは失敗したようです。いくつかの反復の後、theta の値が非常に小さいため、theta0 と theta1 が「NaN」になります。そして、私の線形回帰曲線は奇妙な値を持っています...
勾配降下アルゴリズムのコードは次のとおりです: ( theta = zeros(2, 1);
, alpha= 0.01, iterations=1500)
function [theta, J_history] = gradientDescent(X, y, theta, alpha, num_iters)
m = length(y); % number of training examples
J_history = zeros(num_iters, 1);
for iter = 1:num_iters
tmp_j1=0;
for i=1:m,
tmp_j1 = tmp_j1+ ((theta (1,1) + theta (2,1)*X(i,2)) - y(i));
end
tmp_j2=0;
for i=1:m,
tmp_j2 = tmp_j2+ (((theta (1,1) + theta (2,1)*X(i,2)) - y(i)) *X(i,2));
end
tmp1= theta(1,1) - (alpha * ((1/m) * tmp_j1))
tmp2= theta(2,1) - (alpha * ((1/m) * tmp_j2))
theta(1,1)=tmp1
theta(2,1)=tmp2
% ============================================================
% Save the cost J in every iteration
J_history(iter) = computeCost(X, y, theta);
end
end
そして、コスト関数の計算は次のとおりです。
function J = computeCost(X, y, theta) %
m = length(y); % number of training examples
J = 0;
tmp=0;
for i=1:m,
tmp = tmp+ (theta (1,1) + theta (2,1)*X(i,2) - y(i))^2; %differenzberechnung
end
J= (1/(2*m)) * tmp
end