Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1 from kjlintong/work1
Browse files Browse the repository at this point in the history
Work1
  • Loading branch information
kjlintong authored Jul 26, 2019
2 parents e199785 + 8f66146 commit 8077e32
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions doc/11、总结.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 其它形式的学习

## 度量学习

我曾提到过衡量两个特征向量之间相似性(或差异)最常用的度量是欧氏距离和余弦相似性。这种度量选择似乎是符合逻辑,但实际上是随意的,就像在线性回归中选择平方误差一样。事实上,一个指标可以比另一个指标性能更好,取决于特定的数据集。也就是说,没有一种指标是永远完美的。

您可以创建更适合您的数据集的指标。然后可以将您的度量标准集成到任何需要度量标准的学习算法中,例如 k-means 或 kNN。您如何在不尝试所有可能性的情况下知道哪个方程式是一个好的度量标准?您可以用数据训练您的度量标准。

记住两个向量 x 和 x`间的欧氏距离:


$$ d_{\mathbf{A}}\left(\mathbf{x},\mathbf{x}^{\prime}\right)=\left\|\mathbf{x}-\mathbf{x}^{\prime}\right\| \mathbf{A} \stackrel{\mathrm{def}}{=} \sqrt{\left(\mathbf{x}-\mathbf{x}^{\prime}\right)^{\top} \mathbf{A}\left(\mathbf{x}-\mathbf{x}^{\prime}\right)} $$

0 comments on commit 8077e32

Please sign in to comment.