Downloads · 30 days
0
kiki-orb/phi-JEPA
phi-JEPA is a feature extraction model from kiki-orb. Use it when you need embeddings to search or compare text. It is set up for pytorch.
This is the official model repository for phi-JEPA, a physics-informed masked autoencoder for self-supervised synthetic aperture radar (SAR) image pre-training.
Downloads · 30 days
0
Access
Public
Updated Aug 3, 2026
Repo size
9.4 GB
Likes
0
Public
Click a slice to open those files.
.pth6.4 GB · 80%
From the Hugging Face model README
This is the official model repository for phi-JEPA, a physics-informed masked autoencoder for self-supervised synthetic aperture radar (SAR) image pre-training.
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.
Existing masked image modeling methods for SAR imagery commonly rely on random masking and low-level reconstruction targets. phi-JEPA introduces two SAR-oriented designs:
The released ViT-B/16 checkpoint is pretrained on ATRNet-STAR and is intended for downstream SAR representation transfer.
| Model | Backbone | Pre-training dataset | Epochs | File | SHA-256 |
|---|---|---|---|---|---|
| phi-JEPA | ViT-B/16 | ATRNet-STAR | 100 | phi_jepa_vitb16_e100.pth | f94f048366528815c15a51a060ea27d923db65ae2c6434931121cfd7af72f095 |
Using the Hugging Face CLI:
hf download kiki-orb/phi-JEPA \
main_experiments/phi_jepa_vitb16_e100.pth \
--local-dir ./checkpoints
Using Python:
from huggingface_hub import hf_hub_download
checkpoint_path = hf_hub_download(
repo_id="kiki-orb/phi-JEPA",
filename="main_experiments/phi_jepa_vitb16_e100.pth",
)
print(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 |