[Machine Learning (Andrew NG courses)]I. Introduction

1.What is machine learning?

Machine learning is the field of study that gives computers the ability to learn
without being explicitly programmed.

A computer program is said to learn from experience E with respect to some task T and some performance measure
P if its performance on T, as measured by P, improves with experience E.

2.Differences
betweent
classification and  regression problem

Classification
is appropriate when we are trying to predict one of a small number ofdiscrete-valued
outputs, such as whether it will rain (which we might designate as class 0), or not (say class 1). (少量离散值)

Regression is appropriate when we are trying to predict a continuous-valued output. Even though the number of shares
traded is technically discrete-valued (i.e., an integer), it would be more natural to treat it as a continuous value (similar to the housing prices example in the lecture).(大量离散值,连续值)

2.Differences
betweent Supervised Learning and Unsupervised Learning

Supervised learning "right answers" given. eg:对于房价预测问题,数据中的每个数据,每个面积的房价已给出,预测更多房价。

训练集中的每个数据都有正确答案。算法基于那些数据做出判断。

无监督学习(unsupervised
learning):设计分类器时候,用于处理未被分类标记的样本集

时间: 2024-08-29 01:25:12

[Machine Learning (Andrew NG courses)]I. Introduction的相关文章

[Machine Learning (Andrew NG courses)]V. Octave Tutorial (Week 2)

[Machine Learning (Andrew NG courses)]IV.Linear Regression with Multiple Variables

[Machine Learning (Andrew NG courses)]II. Linear Regression with One Variable

Notes of Machine Learning (Andrew Ng), Week 1~2, Linear Regression

①假设函数(hypothesis function) 在给定一些样本数据(training set)后,采用某种学习算法(learning algorithm)对样本数据进行训练,得到了一个模型或者说是假设函数. 当需要预测新数据的结果时,将新数据作为假设函数的输入,假设函数计算后得到结果,这个结果就作为预测值. 假设函数的表示形式一般如下:θ 称为模型的参数(或者是:权重weights),x就是输入变量(input variables or feature variables) 可以看出,假设

Machine Learning Algorithms Study Notes(1)--Introduction

Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 目 录 1    Introduction    1 1.1    What is Machine Learning    1 1.2    学习心得和笔记的框架    1 2    Supervised Learning    3 2.1    Perceptron Learning Algorithm (PLA)    3 2.1.1    PLA -- "知

Machine Learning - VI. Logistic Regression (Week 3)

http://blog.csdn.net/pipisorry/article/details/43884027 机器学习Machine Learning - Andrew NG courses学习笔记 Classification  0.1表示含义 denote with 0 is the negative class denote with 1 is the positive class.  Hypothesis Representation  Decision Boundary  Cost

Machine Learning - XII. Support Vector Machines (Week 7)

http://blog.csdn.net/pipisorry/article/details/44522881 机器学习Machine Learning - Andrew NG courses学习笔记 Support Vector Machines支持向量机 {SVM sometimes gives a cleaner and more powerful way of learning complex nonlinear functions} Optimization Objective优化目标

Machine Learning - VIII. Neural Networks Representation (Week 4)

http://blog.csdn.net/pipisorry/article/details/4397356 机器学习Machine Learning - Andrew NG courses学习笔记 Neural Networks Representation神经网络表示 Non-linear Hypotheses非线性假设 Neurons and the Brain神经元和大脑 Model Representation模型表示 Examples and Intuitions示例和直觉知识 Mu

Machine Learning - XVIII. Application Example Photo OCR应用实例-照片OCR(Week10)

http://blog.csdn.net/pipisorry/article/details/44999703 机器学习Machine Learning - Andrew NG courses学习笔记 Application Example Photo OCR应用实例照片 OCR(Optical Character Recognition)光学文字辨识 Problem Description and Pipeline问题描述和管道 three reasons to centered around