资源简介
包含斯坦福大学课程笔记中文版 Coursera课程笔记以及作业答案matlab 完整版
代码片段和文件信息
function J = computeCost(X y theta)
%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); % X(792) theta(21)
% =========================================================================
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8498782 2018-07-31 14:54 机器学习个人笔记完整版v5.29-A4打印版.pdf
目录 0 2018-11-08 20:07 machine-learning-ex1\
目录 0 2018-11-08 20:07 machine-learning-ex1\ex1\
文件 694 2018-01-11 19:47 machine-learning-ex1\ex1\computeCost.m
文件 708 2018-01-11 19:47 machine-learning-ex1\ex1\computeCostMulti.m
文件 3909 2018-01-11 19:47 machine-learning-ex1\ex1\ex1.m
文件 4538 2018-01-11 19:47 machine-learning-ex1\ex1\ex1_multi.m
文件 1359 2018-01-11 19:47 machine-learning-ex1\ex1\ex1data1.txt
文件 657 2018-01-11 19:47 machine-learning-ex1\ex1\ex1data2.txt
文件 1398 2018-01-11 19:47 machine-learning-ex1\ex1\featureNormalize.m
文件 1081 2018-01-11 19:47 machine-learning-ex1\ex1\gradientDescent.m
文件 983 2018-01-11 19:47 machine-learning-ex1\ex1\gradientDescentMulti.m
目录 0 2018-11-08 20:07 machine-learning-ex1\ex1\lib\
目录 0 2018-11-08 20:07 machine-learning-ex1\ex1\lib\jsonlab\
文件 1624 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\AUTHORS.txt
文件 3862 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\ChangeLog.txt
文件 1551 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\LICENSE_BSD.txt
文件 19369 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\README.txt
文件 881 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\jsonopt.m
文件 18732 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\loadjson.m
文件 15574 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\loadubjson.m
文件 771 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\mergestruct.m
文件 17462 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\savejson.m
文件 16123 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\saveubjson.m
文件 1094 2018-01-11 19:47 machine-learning-ex1\ex1\lib\jsonlab\varargin2struct.m
文件 1195 2018-01-11 19:47 machine-learning-ex1\ex1\lib\makeValidFieldName.m
文件 5562 2018-01-11 19:47 machine-learning-ex1\ex1\lib\submitWithConfiguration.m
文件 677 2018-01-11 19:47 machine-learning-ex1\ex1\normalEqn.m
文件 1050 2018-01-11 19:47 machine-learning-ex1\ex1\plotData.m
文件 1876 2018-01-11 19:47 machine-learning-ex1\ex1\submit.m
文件 263 2018-01-11 19:47 machine-learning-ex1\ex1\token.mat
............此处省略263个文件信息
相关资源
- 斯坦福机器学习公开课CS229讲义作业及
- 千峰django基本操作笔记
- 千峰django教程创建项目笔记整理
- matlab迭代学习笔记(专门适合刘卫国
- Oracle 11G 思维导图学习笔记
- 2016matlab破解版笔记本内置摄像头配置
- matlab基于笔记本电脑的摄像头的人脸
- 狂神docker笔记.md
- 狂神说Vue笔记.md
- Matlab笔记本自带摄像头人脸识别 by
- MATLAB-robotic-toolbox工具箱学习笔记
- 老外写的CDMA rake 接收机 MATLAB程序,还
- SpringBoot学习笔记——尚硅谷
- jeecgboot实战入门教程 14讲笔记.md
- 解析HashMap.md
- 《卡尔曼滤波理论与实践matlab版的笔
- MATLAB代码,用笔记本摄像头输入的一
评论
共有 条评论