Views
No views yet
heads/ — trained MLP heads (*.head.pt), the paper's models. Each is a compact head
(d → 512 → 256, batch-norm, ReLU, ℓ2-normalized) on top of a frozen encoder. Naming:
<encoder>_ucs_paired[_<variant>]_<objective>.head.pt, with objective ∈ {instance, class} and
per-fold leave-classes-out (kf0..kf4), data-efficiency (sub250..sub4000), and cross-generator
(aldm) variants.
ckpts/ — fine-tuned encoder checkpoints (BEATs, M2D) used in the six-encoder robustness study.1import torch
2head = torch.load("heads/clap_general_ucs_paired_instance.head.pt", map_location="cpu")
3# apply to frozen encoder embeddings (see src/apply_head.py in the code repo)ckpts/.