梯度下降实现matlab,随机梯度下降实现 – MATLAB

我正在尝试在MATLAB中实现“

Stochastic gradient descent”.我完全按照算法,但我得到了一个非常非常大的w(coffients)预测/拟合功能.我在算法中有错误吗?

算法:

x = 0:0.1:2*pi // X-axis

n = size(x,2);

r = -0.2+(0.4).*rand(n,1); //generating random noise to be added to the sin(x) function

t=zeros(1,n);

y=zeros(1,n);

for i=1:n

t(i)=sin(x(i))+r(i); // adding the noise

y(i)=sin(x(i)); // the function without noise

end

f = round(1+rand(20,1)*n); //generating random indexes

h = x(f); //choosing random x points

k = t(f); //chossing random y points

m=size(h,2); // length of the h vector

scatter(h,k,'Red'); // drawing the training points (with noise)

%scatter(x,t,2);

hold on;

plot(x,sin(x)); // plotting the Sin function

w = [0.3 1 0.5]; // starting point of w

a=0.05; // learning rate "alpha"

// ---------------- ALGORITHM ---------------------//

for i=1:20

v = [1 h(i) h(i).^2]; // X vector

e = ((w*v') - k(i)).*v; // prediction - observation

w = w - a*e; // updating w

end

hold on;

l = 0:1:6;

g = w(1)+w(2)*l+w(3)*(l.^2);

plot(l,g,'Yellow'); // drawing the prediction function

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值