Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c7a526

Browse files
committed
Update 2018-03-14-ML基本概念.md
1 parent c6cde3e commit 9c7a526

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

_posts/2018-03-14-ML基本概念.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,23 @@ tags: ai
99
## 误差
1010
训练误差:训练集上的误差,其他类似
1111

12+
13+
## SVM
14+
核技巧: $x_i$和$x_j$在特征空间的内积,等于他们在原始样本空间中通过函数$k(.,.)$计算的结果
15+
16+
线性核:$x_i^Tx_j$
17+
多项式核:$(x_i^Tx_j)^d$
18+
高斯核:$exp(- \frac {||x_i-x_j||^2} {2\sigma^2})$
19+
拉普拉斯核:$exp(-\frac {||x_i - x_j||} {\sigma})$
20+
Sigmoid核:$tanh(\beta x_i^Tx_j+\theta)$
21+
1222
## 其他
1323
相关系数: $\rho= \frac {Cov(X, Y)}{\sigma_X \sigma_Y}$
1424
协方差:$Cov(X, Y) = E[(X-\mu_X)(Y-\mu_Y)]$
1525
线性相关时,相关系数为1
1626

1727

18-
结构风险:描述模型的某些性质。比如正则化项
28+
结构风险:描述模型的某些性质。比如正则化项
1929
经验风险:描述模型与训练数据的契合程度
30+
31+

0 commit comments

Comments
 (0)