您的位置:首页 > 其它

【Andrew NG 机器学习公开课】CS229:Introduction、Linear Regression

2015-07-29 11:39 267 查看
这份笔记来源于Andrew NG在Coursera上的公开课和讲义。

Introduction

机器学习问题

(一)有监督学习(Supervised Learning)

基本思想是:given the right answer for each example in the data.(即:我们数据集中的每个样本都有相应的“正确答案",再根据这些样本作出预测。)

回归(regression):our goal is to predict a continuous value output.
分类(classification):the goal is to predict a discrete value ouput.

(二)无监督学习(Unsupervised Learning)

         给定的样本没有标签,需要靠机器自己去学习,对某类同样的样本进行标注、分类等。比如:聚类算法。

Part  Ⅰ Linear Regression

linear function:hθ(x) = θ0 + θ1x1 + θ2x2

其中 θi 为参数 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  机器学习