12. Deep Metric Learning
介绍一些 Deep Metric Learning (深度度量学习)的损失函数和训练样本对挖掘方法。
12.1. 损失函数
以下损失函数中的 \(x\) 表示 embedding。
Softmax Loss
Center Loss
A Discriminative Feature Learning Approach for Deep Face Recognition
减小类内差异,每个类别在特征空间分别维护一个类中心。
\(m\) 是一个 batch 的大小。
Large Margin Softmax Loss
Large-Margin Softmax Loss for Convolutional Neural Networks
减小类内差异,增大类间差异。
\(m\) 表示 margin,\(D(\theta)\) 是一个单调减函数,且 \(D(\frac{\pi}{m})=\cos(\frac{\pi}{m})\) 。
SphereFace Loss
SphereFace: Deep Hypersphere Embedding for Face Recognition
在 Large Margin Softmax Loss 的基础上,令 \(\| w \| = 1\) 。
CosFace Loss
CosFace: Large Margin Cosine Loss for Deep Face Recognition
在余弦空间中最大化分类界限。
\(m\) 表示 margin,\(s\) 表示超球面的半径。
ArcFace Loss
ArcFace: Additive Angular Margin Loss for Deep Face Recognition
在角度空间中最大化分类界限。
\(m\) 表示 margin,\(s\) 表示超球面的半径。
Contrastive Loss
Dimensionality Reduction by Learning an Invariant Mapping
Triplet Loss
Distance Metric Learning for Large Margin Nearest Neighbor Classification
Margin Loss
Sampling Matters in Deep Embedding Learning
\(y_{ij} \in \{ -1, 1 \}\),\(D_{ij}\) 表示距离,\(\beta\) 是可学习的参数。
Tuplet Margin Loss
Deep Metric Learning with Tuplet Margin Loss
每个 batch 包含 \(k\) 个类别,每个类别 \(n\) 个样本,从其他的 \(k-1\) 个类别中随机选取一个样本作为负例,可以组成 \(kn(n-1)\) 个三元组。
\(s\) 是一个缩放因子。
Angular Loss
Deep Metric Learning with Angular Loss
以三元组的角度为优化目标,最小化负样本对应的 \(\angle n\) 。相比于 Triplet Loss 的优势:角度具有缩放不变性;角度的计算过程可以利用到三条边;角度的阈值比 Triplet Loss 的 margin 具有更明确的物理意义。
\(\mathcal{B}\) 表示一个 batch 的样本集合,\(N\) 是 batch 的大小,\(\alpha\) 是角度阈值。
N-pair Loss
Improved Deep Metric Learning with Multi-class N-pair Loss Objective
利用一个 batch 内的所有负例。
Lifted Structure Loss
Deep Metric Learning via Lifted Structured Feature Embedding
利用一个 batch 内的所有正负样本对。
\(\mathcal{P}\) 表示正样本对,\(\mathcal{N}\) 表示负样本对,\(D_{i,j}\) 表示样本对的距离,\(\alpha\) 表示 margin。
NCA Loss
Neighbourhood Components Analysis
\(d\) 是距离函数,\(y\) 是正例,\(\mathcal{Z}\) 是负例集合。
Proxy NCA Loss
No Fuss Distance Metric Learning using Proxies
每一个类别都有一个可学习的 proxy,用来近似真实的数据点。\(x\) 对应的正例为本类别的 proxy \(p(y)\),负例为所有其他类别的 proxy \(p(\mathcal{Z})\) 。
Proxy Anchor Loss
Proxy Anchor Loss for Deep Metric Learning
为每一个类别赋予了一个 proxy,将一个 batch 的样本和所有的 proxy 之间求距离,拉近每个类别的样本和该类别对应的 proxy 之间的距离,拉远与其他类别的 proxy 之间的距离。相比于 Proxy NCA Loss,更加充分地利用了 batch 的数据。
\(\mathcal{X}\) 表示一个 batch 内所有样本的 embedding 集合;\(\mathcal{P}^+\) 表示正例 proxy 的集合,也就是 batch 内的样本对应的 proxy 的集合;\(\mathcal{P}\) 表示所有 proxy 的集合,也就是所有类别对应的 proxy 的集合;\(\mathcal{X}_p^+\) 表示与 \(p\) 同一类别的 embedding 集合,\(\mathcal{X}_p^- = \mathcal{X} - \mathcal{X}_p^+\) ;\(s\) 表示余弦相似度。
SoftTriple Loss
SoftTriple Loss: Deep Metric Learning Without Triplet Sampling
考虑到同类数据的多样性,为每类数据学习 \(K\) 个类中心;通过正则项自适应地合并相似的类中心。
Multi-Similarity loss
Multi-Similarity Loss with General Pair Weighting for Deep Metric Learning
为给每一个样本对动态赋予一个权重,这个权重是体现在梯度上的。给样本赋权的核心在于判断样本的局部分布,即它们之间的相似性。局部样本之间的分布和相互关系并不仅仅取决于当前两个样本之间的距离或相似性,还取决于当前样本对与其周围样本对之间的关系。
\(\mathcal{P}_i\) 表示正样本集合,\(\mathcal{N}_i\) 表示负样本集合,\(S_{ij}\) 表示样本对的相似度。
Normalized Temperature-scaled Cross Entropy Loss
A Simple Framework for Contrastive Learning of Visual Representations
自监督学习方法,采用数据增强的方法生成正样本对。
\(N\) 是 batch 的大小,\(\tau\) 是温度缩放因子。
12.2. 样本对挖掘
Packaged Triplets
已经预先采样好的三元组。
Triplet-Margin Miner
根据 anchor-positive 与 anchor-negative 距离差来挖掘样本。只选择最困难的样本对是不利于训练的。
Hard:\(d_{an} < d_{ap}\)
Semi-Hard:\(d_{an} > d_{ap}\)
Angular Miner
对应 Angular Loss,根据角度阈值构建三元组。
Batch-Hard Miner
In Defense of the Triplet Loss for Person Re-Identification
在 batch 内选择最困难的正样本对和负样本对。
Distance-Weighted Miner
Sampling Matters in Deep Embedding Learning
根据距离分布均匀采样负样本,可以保证得到的样本分布在一个较大的距离范围,保证样本多样性。
\(d\) 表示 anchor 与 negative 的距离,\(n\) 表示 embedding 的维度。
HDC Miner
Hard-Aware Deeply Cascaded Embedding
让更复杂的模型处理更困难的样本。
在 batch 内,对正负样本对都按距离排序,将固定比例的困难样本输入更深层的网络进行提特征、计算损失。
推理阶段,将不同层级的网络输出进行级联。
Maximum-Loss Miner
重复多次采样 batch 的子集,提取出损失最大的样本对。
Multi-Similarity Miner
选择负样本,满足 \(d_{an} > d_{ap}^{max} - \epsilon\)
选择正样本,满足 \(d_{ap} < d_{an}^{min} + \epsilon\)
Pair-Margin Miner
根据距离阈值挑选样本对。
选择负样本,满足 \(d_{an} < m_n\)
选择正样本,满足 \(d_{ap} > m_p\)
12.3. 参考资料
A Metric Learning Reality Check
深度度量学习中的损失函数
『深度概念』度量学习中损失函数的学习与深入理解
图解SimCLR框架,用对比学习得到一个好的视觉预训练模型