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

关于机器学习的问题,吴恩达的机器学习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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵