资源简介
Coursera机器学习的8个练习所有答案,自己写的
代码片段和文件信息
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.
predictions = X*theta;
sqrErrors = (predictions-y).^2;
J = 1/(2*m) * sum(sqrErrors);
% =========================================================================
end
相关资源
- 机器学习导论PDF (中文)
- 斯坦福大学吴恩达机器学习课程 学习
- 郑捷《机器学习算法原理与编程实践
- Hands-On Machine Learning with Scikit-Learn an
- 视觉机器学习20讲[PDF扫描版,带书签
- 机器学习-算法工程师面试宝典
- PRML pattern recognition and machine learning
- Hands-On Machine Learning with Scikit-Learn an
- 指针仪表角度机器学习
- Pattern Recognition And Machine Learning中英文
- 《百面机器学习算法工程师带你去面
- 机器学习实战.pdf 高清中文版
- web安全机器学习入门-pdf+源码全套
- 百面机器学习-机器学习面经
- Pattern Recognition 4th Edition模式识别英文
- AI算法编程竞赛回顾与题解-1.pptx
- 机器学习实战(中、英文原版)
- 全2020吴恩达机器学习MachineLearning课程
- 机器学习实战中文原版电子书
- 拍拍贷发起的一次与信贷申请审核工
- Feature Engineering Made Easy (2018.04) (
- 最经典的机器学习教科书之一:《模
- 手写体识别数据集
- 机器学习/数据挖掘岗面试准备
- Vector control of three-phase ac machines
- 贝叶斯网引论
- 机器学习实战-Peter Harrington著
- 东北大学人工智能与机器学习课程课
- 用Scikit-Learn和TensorFlow实践机器学习
- 统计学习理论中文版part2
评论
共有 条评论