qq_38759070 2021-07-11 14:31 采纳率: 0%
浏览 34

关于机器学习的问题,吴恩达的机器学习WEEK2编程任务中为什么总是报错:y没有被定义?

在week2的computeCost和gradientDescent这两个任务中,总是显示y没有被定义,如何解决这个问题?

computeCost部分的代码:

%COMPUTECOST Compute cost for linear regression
%   J = COMPUTECOST(X, y, theta) computes the cost of using theta as the
%   parameter for linear regression to fit the data points in X and y

% Initialize some useful values
m = length(y); % number of training examples

% You need to return the following variables correctly 
J = 0;

% ====================== YOUR CODE HERE ======================
% Instructions: Compute the cost of a particular choice of theta
%               You should set J to the cost.



J = sum((X*theta-y).^2)/(2*m);


% =========================================================================

end

gradientDescent部分的代码:

%GRADIENTDESCENT Performs gradient descent to learn theta
%   theta = GRADIENTDESCENT(X, y, theta, alpha, num_iters) updates theta by 
%   taking num_iters gradient steps with learning rate alpha

% Initialize some useful values
m = length(y); % number of training examples
J_history = zeros(num_iters, 1);

for iter = 1:num_iters

    % ====================== YOUR CODE HERE ======================
    % Instructions: Perform a single gradient step on the parameter vector
    %               theta. 
    %
    % Hint: While debugging, it can be useful to print out the values
    %       of the cost function (computeCost) and gradient here.
    %

theta(1) = theta(1) - alpha*sum(X*theta_s-y)/m;
theta(2) = theta(2) - alpha*sum((X*theta_s-y).*X(:,2))/m;
theta_s = theta;






    % ============================================================


Octave输出的结果:

error: 'y' undefined near line 7, column 7
error: called from
    computeCost at line 7 column 3

error: 'y' undefined near line 7, column 7
error: called from
    gradientDescent at line 7 column 3

  • 写回答

1条回答 默认 最新

  • gt0808 2023-04-27 17:35
    关注

    m = length(y); y没定义阿哥哥

    评论

报告相同问题?

问题事件

  • 修改了问题 7月11日
  • 修改了问题 7月11日
  • 创建了问题 7月11日

悬赏问题

  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办