Views
No views yet
Release status. This repository currently provides the pretrained checkpoint used in our main experiments. The pre-training code and downstream evaluation code are not included in the current release.
| Model | Backbone | Pre-training dataset | Epochs | File | SHA-256 |
|---|---|---|---|---|---|
| phi-JEPA | ViT-B/16 | ATRNet-STAR | 100 | phi_jepa_vitb16_e100.pth | f94f048366528815c15a51a060ea27d923db65ae2c6434931121cfd7af72f095 |
1hf download kiki-orb/phi-JEPA \
2 main_experiments/phi_jepa_vitb16_e100.pth \
3 --local-dir ./checkpoints1from huggingface_hub import hf_hub_download
2
3checkpoint_path = hf_hub_download(
4 repo_id="kiki-orb/phi-JEPA",
5 filename="main_experiments/phi_jepa_vitb16_e100.pth",
6)
7print(checkpoint_path)| Configuration | Value |
|---|---|
| Backbone | ViT-Base |
| Patch size | 16 x 16 |
| Pre-training dataset | ATRNet-STAR (SOC, 40 vehicle categories) |
| Optimizer | AdamW |
| Base learning rate | 1e-3 |
| Weight decay | 0.05 |
| Batch size | 128 |
| Pre-training epochs | 100 |
| Warmup | 20 epochs |
| Learning-rate schedule | Cosine annealing |
| Overall masking ratio | 80% |
| Target-region masking ratio | 50% |
| Feature alignment objective | Cosine loss |
| Semantic teacher | Frozen SARCLIP ViT-B/16 image encoder |