Speaker: Andrew Ng
 
1. Introduction

1.A comptuter program is said to learn from experience E with respect to some task T and some performance measure P, if it's performance on T, as measured by P, improves with experience E.
机器学习算法完成的目标是T
机器学习的过程积累经验是E
机器学习的总结或者评价是P
例子:predict weather
a. The weather prediction task. 机器学习要完成的目标和任务T
b. The probability of it correctly predicting a future date's weather. 机器学习结果的评价P
c. The process of the algorithm examining a large amount of historical weather data. 机器学习的过程E 

2. 假设自己工作在一个气象监测站,对于每天的天气需要做出是晴天、多云、下雨三种。用机器学习算法预测明天天气,这是一个Regression(回归)问题还是一个Classification(分类)问题。
 这里答案是分类问题。
Regression问题是根据以前已有数据去预测其他未知点的值,并没有Classification里面标记label的步骤。Regression结果是连续数据,Classificatiom结果是离散的。
其他例题:
a. 在气象站工作,预测5pm时候是否会下雨。 Classification
b. 在股市工作,预测一只股票明早的价格。 Regression

3. Supervised Learning and Unsupervised Learning 监督学习与非监督学习
监督学习会已经知道Label下,对数据进行分类。非监督学习没有Label,对数据进行聚类。
例题:
a. 分别给50篇男作者和50篇女作者写的文章,预测一个新的作者写的文章,作者是男的还是女的。 监督,分类。
b. 病人患心脏病的医疗记录,找出不同病人的簇Cluster。非监督,聚类
c. 检查网站,分类是对儿童友好还是针对成年人的。监督,分类
d. 给1000个病人的用药记录,发现是否有不同的类别或类型对于药物反应。非监督,聚类。

4.Machine Learning Definition
Machine learning is the field of study that gives computers the ability to learn without being explicitly programmed.----  Arthur Samuel

1. Machine Learning - Introduction的更多相关文章

  1. Andrew Ng Machine learning Introduction

    1. 机器学习的定义:Machine learning is programming computers to optimize a performance criterion(优化性能标准) usi ...

  2. How do I learn machine learning?

    https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644   How Can I Learn X? ...

  3. Machine Learning Algorithms Study Notes(1)--Introduction

    Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 目 录 1    Introduction    1 1.1    ...

  4. Introduction to Machine Learning

    Chapter 1 Introduction 1.1 What Is Machine Learning? To solve a problem on a computer, we need an al ...

  5. A Gentle Introduction to the Gradient Boosting Algorithm for Machine Learning

    A Gentle Introduction to the Gradient Boosting Algorithm for Machine Learning by Jason Brownlee on S ...

  6. (转)Introduction to Gradient Descent Algorithm (along with variants) in Machine Learning

    Introduction Optimization is always the ultimate goal whether you are dealing with a real life probl ...

  7. (原创)Stanford Machine Learning (by Andrew NG) --- (week 1) Introduction

    最近学习了coursera上面Andrew NG的Machine learning课程,课程地址为:https://www.coursera.org/course/ml 在Introduction部分 ...

  8. ML Lecture 0-1: Introduction of Machine Learning

    本博客是针对李宏毅教授在Youtube上上传的课程视频<ML Lecture 0-1: Introduction of Machine Learning>的学习笔记.在Github上也po ...

  9. 【Machine Learning is Fun!】1.The world’s easiest introduction to Machine Learning

    Bigger update: The content of this article is now available as a full-length video course that walks ...

随机推荐

  1. NTP服务解析

    ······[NTP服务概述] NTP(Network Time Protocol)服务主要用于同步服务器时间. nptd 可以运行在多种模式下,包括对称的 主动.被动(active/passive) ...

  2. ASP.NET Core 上传文件到共享文件夹

    参考资料:ASP.NET 上传文件到共享文件夹 创建共享文件夹参考资料:https://www.cnblogs.com/dansediao/p/5712657.html 一.配置上传文件相关参数并读取 ...

  3. Tomcat-8.5.23 基于域名和端口的虚拟主机

    下载tomcat yum install java -y cd /opt/ wget http://mirror.bit.edu.cn/apache/tomcat/tomcat-8/v8.5.23/b ...

  4. selenium自动化 | 借助百度AI开放平台识别验证码登录职教云

    #通过借助百度AI开放平台识别验证码登录职教云 from PIL import Image from aip import AipOcr import unittest # driver.get(zj ...

  5. python学习笔记 | 递归思想

    1.引子 大师 L. Peter Deutsch 说过: To Iterate is Human, to Recurse, Divine. 中文译为:人理解迭代,神理解递归 2.什么是递归 简单理解: ...

  6. 【Vue】Vue开发环境搭建

    Vue前置学习环境 文章目录 Vue前置学习环境 IDE Node.js 调试环境 工程环境 小结 IDE WebStorm 官网下载:https://www.jetbrains.com/websto ...

  7. char什么时候会用空格进行填充?

    char什么时候会用空格进行填充?

  8. Android之Xposed

    基础书籍推荐:1.疯狂JAVA讲义:2.疯狂安卓讲义: 逆向分析必须知道他的原理,不然只会用工具,那就直接GG. 谷歌的镜像网站:https://developers.google.com/andro ...

  9. REUSE_ALV_GRID_DISPLAY_LVC 的fieldcat定义

    在使用REUSE_ALV_GRID_DISPLAY_LVC函数的时候,需要注意的是,内表中如果有P类型的或者数据元素为BDMNG等类型是,在定义fieldcat的时候,注意要指定fieldcat-da ...

  10. 利用容器逃逸实现远程登录k8s集群节点

    某天, 某鱼说要吃瞄, 于是...... 李国宝:边缘计算k8s集群SuperEdge初体验 ​ zhuanlan.zhihu.com 图标 照着上一篇文章来说,我这边边缘计算集群有一堆节点. 每个节 ...