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

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

(Machine Learning Foundations)—Mathematical Foundations

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

The VC Dimension

Recap

这里写图片描述

Definition of VC Dimension

VC Dimension

the formal name of maximum non-break point

这里写图片描述

the Four VC Dimensions

这里写图片描述

VC Dimension and Learning

  • finite dVCg d V C ⟹ g can generalize Eout(g)Ein(g) E o u t ( g ) ≈ E i n ( g )
  • regardless of learning algorithm A A 、input distribution P P 、target function
    f

VC Dimension of Perceptrons

2D PLA Revisited

这里写图片描述

d-D perceptrons: dVC=d+1 ? d V C = d + 1   ?

dVCd+1 d V C ≥ d + 1

这里写图片描述

- There are some d+1 d + 1 inputs we can shatter.
- 每一行代表一个点
- 灰色部分(第一列)视作第 0 维,是常数,代表 threshhold
- X X 可逆
- 任意的 Y Y 都可以表示出来

dVCd+1 d V C ≤ d + 1

这里写图片描述

  • We cannot shatter any set of d+2 d + 2 inputs.
  • linear dependence restricts dichotomy
  • 任意一个可以 shatter 的 d+1 d + 1 向量组再加一维
  • Xd+2 X d + 2 能被前 d+1 d + 1 个向量线性表出

Physical Intuition of VC Dimension

Degrees of Freedom 自由度

  • dVCfreeparameters d V C ≈ f r e e p a r a m e t e r s

Penalty for Model Complexity

这里写图片描述

  • with a high probability, EoutEin+Ω(N,H,δ) E o u t ≤ E i n + Ω ( N , H , δ )

  • The VC Message

    这里写图片描述

Sample Complexity

这里写图片描述

  • theory: N10000 dVC N ≈ 10000   d V C

  • practical: N10 dVC N ≈ 10   d V C often enough!

  • Looseness of VC Bound

    这里写图片描述

你可能感兴趣的文章
zookeeper(3)---zookeeper API的简单使用(增删改查操作)
查看>>
zookeeper(4)---监听器Watcher
查看>>
zookeeper(2)---shell操作
查看>>
mapReduce(3)---入门示例WordCount
查看>>
hbase(3)---shell操作
查看>>
hbase(1)---概述
查看>>
hbase(5)---API示例
查看>>
SSM-CRUD(1)---环境搭建
查看>>
SSM-CRUD(2)---查询
查看>>
SSM-CRUD (3)---查询功能改造
查看>>
Nginx(2)---安装与启动
查看>>
springBoot(5)---整合servlet、Filter、Listener
查看>>
C++ 模板类型参数
查看>>
C++ 非类型模版参数
查看>>
设计模式 依赖倒转原则 & 里氏代换原则
查看>>
DirectX11 光照
查看>>
图形学 图形渲染管线
查看>>
DirectX11 计时和动画
查看>>
DirectX11 光照与材质的相互作用
查看>>
DirectX11 法线向量
查看>>