MLL is a simple PyTorch package that includes the most common metric learning layers.
MLL only includes layers that are not dependent on negative sample mining and therefore drop in replacements for
the final linear layer used in classification problems.
All layers aim to achieve greater inter-class variance and minimizing intra-class variance.
The basis of all these layers is the scaled cosine similarity
We currently support the following layers:
MLL gives you the following advantages:
- Sub-centers: You can use multiple sub-centers for all layers except for DeepNCM.
- Heuristic scale: MLL will use the heuristic scale from AdaCos
$s = \sqrt{2} * \log{(c-1)}$ if not specified otherwise. - Soft-targets: All MLL-layers can be used in conjunction with soft-targets (e.g. with Mixup).
Simply run:
pip install metric-learning-layers
import torch
import metric_learning_layers as mll
rnd_batch = torch.randn(32, 128)
rnd_labels = torch.randint(low=0, high=10, size=(32, ))
arcface = mll.ArcFace(in_features=128,
out_features=10,
num_sub_centers=1,
scale=None, # defaults to AdaCos heuristic
trainable_scale=False
)
af_out = arcface(rnd_batch, rnd_labels) # ArcFace requires labels (used to apply the margin)
# af_out: torch.Size([32, 10])
adacos = mll.AdaCos(in_features=128,
out_features=10,
num_sub_centers=1
)
ac_out = adacos(rnd_batch) # AdaCos does not require labels
# ac_out: torch.Size([32, 10])