junxnone / aiwiki

AI Wiki
https://junxnone.github.io/aiwiki
18 stars 2 forks source link

ML OML SVM #115

Open junxnone opened 5 years ago

junxnone commented 5 years ago

SVM 支持向量机

Reference

Brief

SVM Details Description
SVM 核心理念
SVM 复杂度
SVM Kernel 用于处理非线性问题, k() = 特征变换函数的点乘
间隔/Margin Details Description
函数间隔 image
几何间隔 image
硬间隔 问题线性可分
软间隔 问题线性不可分, 近似线性可分

image image

SVM 分类

线性可分 SVM

线性 SVM

非线性 SVM

线性不可分二维数据 image
投影到三维空间进行分割 image
分割平面投影回二维空间 image

Kernel trick 核技巧

SVM 优缺点

优点

其他

ProbSVM

多分类支持向量机

SVR

History

junxnone commented 4 years ago

TODO