斯坦福机器学习课程 Exercise 习题二

Exercise 2: Linear Regression

话说 LaTex 用起来好爽

Matlab代码

迭代并且画出拟合曲线

Linear regression 公式如下

hθ(x)=θTx=i=0nθixi
(i是代表x的个数)

batch gradient descent update rule

θj:=θjα1mi=1m(h(i)θy(i))x(i)j(for all j)

α=0.07

x = load('L:\\MachineLearning2016\\ex2x.dat');
y = load('L:\\MachineLearning2016\\ex2y.dat');

m = length(y);
x = [ones(m, 1), x];
theta=[0,0];%row vector

figure % open a new figure window
plot(x(:,2), y, 'o');
ylabel('Height in meters')
xlabel('Age in years')

hold on % Plot new data without clearing old plot
plot(x(:,2), x*transpose(theta), '-')
legend('Training data', 'Linear regression')

%迭代方式1
 newTheta1 =theta(1,1) - transpose(x(:,1)) * (x*transpose(theta) -y) *0.07 * 0.02;
 newTheta2 =theta(1,2) - transpose(x(:,2)) * (x*transpose(theta) -y) *0.07 * 0.02;
 theta=[newTheta1,newTheta2];

 %迭代方式2
 for ii = 1:1500
     theta  = theta -  transpose( x*transpose(theta) -y  ) * x * 0.07 * 0.02;
    if rem(ii,100) == 0
    hold on % Plot new data without clearing old plot
    plot(x(:,2), x*transpose(theta), '-')

    end
 end

  hold on % 打印最后一条拟合曲线
  plot(x(:,2), x*transpose(theta), '+')

画出 J(θ) 的图像

Understanding J(θ)

J(θ)=12mi=1m(h(i)θy(i))2(i means the ith of sample)

J_vals = zeros(100, 100);   % initialize Jvals to 100x100 matrix of 0's
theta0_vals = linspace(-3, 3, 100);
theta1_vals = linspace(-1, 1, 100);
for i = 1:length(theta0_vals)
      for j = 1:length(theta1_vals)
      t = [theta0_vals(i); theta1_vals(j)];%column vector
      J_vals(i,j) = sum( (x*t' -y).^2  ) * 0.01;
    end
end

% Plot the surface plot
% Because of the way meshgrids work in the surf command, we need to 
% transpose J_vals before calling surf, or else the axes will be flipped
J_vals = J_vals';
figure;
surf(theta0_vals, theta1_vals, J_vals)
xlabel('\theta_0'); ylabel('\theta_1')
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值