博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
机器学习基石 - Types of Learning
阅读量:4091 次
发布时间:2019-05-25

本文共 1768 字,大约阅读时间需要 5 分钟。

(Machine Learning Foundations)—Mathematical Foundations

,副教授 (Associate Professor),资讯工程学系 (Computer Science and Information Engineering)

Types of Learning

Learning with Different Output Space

  • Binary Classification (二元分类)
  • Multiclass Classification 输出多个类别 (是非题变为选择题)
  • Regression (回归分析): deeply studied in statistics
  • Structured Learning 结构化学习 (huge multiclass classification problem)
  • 这里写图片描述

Learning with Different Data Label yn y n

关于监督学习和非监督学习

  • Multiclass Classification 下的几种情况

    这里写图片描述

  • Supervised Learning: every xn x n comes with corresponding yn y n

    每个输入都知道对应的正确输出

  • Unsupervised: Learning without yn y n

    • clustering (聚类)
    • density estimation (密度分析)
    • outlier detection (离群点分析)
  • Semi-supervised: Learn with some yn y n

    • leverage unlabeled data to avoid ‘expensive’ labeling
    • 标记的代价可能很大,只能做一部分

这里写图片描述

Reinforcement Learning (增强学习)

  • a very different but natural way of learning

  • 惩罚错误的行为,奖励正确的行为

  • 例子
    这里写图片描述
  • learn with partial/implicit information (often sequentially) (一个一个的来学习)

Learning with Different Protocol f(xn,yn) f ⇒ ( x n , y n )

和机器的沟通方式

  • Batch Learning: 喂给机器一批一批的数据 (duck feeding)

    监督学习、非监督学习

  • Online Learning: 一个一个的来 (sequentially)

    PLA、增强学习

  • Active Learning: 主动的去学习 (ask questions)

    • query the yn y n of the chosen xn x n
    • improve hypothesis with fewer labels (hopefully) by asking questions strategically
    • 机器无法识别时,让机器自己来问,需要标记的可能就少一些
  • 总结

    这里写图片描述

Learning with Different Input Space X X

Concrete Features

  • each dimension of XRd X ⊆ R d represents sophisticated physical meaning

  • 具体的东西,可以计算,预先有人类智慧的加工

  • the easy ones for ML

Raw Features

  • 更为抽象,包含很多细节 simple physical meaning

  • like image pixels, speech signal, etc.

  • often need human or machines to convert to concrete ones

  • feature engineer (特征工程) 提取出哪些特征给机器比较好

Abstract Features

  • 需要机器自己去学到特征

  • no physical meaning

  • need feature conversion/extraction/construction

  • 例如只有一些编号的对应关系

思考题

这里写图片描述

你可能感兴趣的文章
Koa2初体验
查看>>
Koa 2 初体验(二)
查看>>
Koa2框架原理解析和实现
查看>>
vue源码系列文章good
查看>>
你不知道的Virtual DOM
查看>>
VUE面试题总结
查看>>
写好JavaScript条件语句的5条守则
查看>>
原生JS中DOM节点相关API合集
查看>>
【TINY4412】U-BOOT移植笔记:(7)SDRAM驱动
查看>>
【TINY4412】U-BOOT移植笔记:(12)BEEP驱动
查看>>
单链表的修改和删除
查看>>
C++的三个基本特征:封装、继承、多态
查看>>
C++虚函数的总结
查看>>
什么是URL地址?
查看>>
C++多态的实现方式总结
查看>>
学习C++需要注意的问题
查看>>
C++模板
查看>>
C++双冒号(::)的用法
查看>>
【Unity】封装SQLite管理类
查看>>
【Unity】面试题整理
查看>>