Views
No views yet
Note: All checkpoints have LoRA adapters already merged into the weights. The full checkpoints retain the separateq_proj,k_proj,v_projlayers (with merged LoRA) alongside the combinedqkvweights for reference. The encoder-only checkpoints contain just the mergedqkvweights, ready for downstream use.
explora_dinov2_fmow_rgb/| Description | ViT-B | ViT-L |
|---|---|---|
| DinoV2 teacher encoder & decoder weights + ExPLoRA adapters | ViT-B/14 | ViT-L/14 |
| Encoder-only weights | ViT-B/14 | ViT-L/14 |
1import torch
2
3# Load encoder-only checkpoint (recommended for fine-tuning)
4ckpt = torch.load("explora_dinov2_fmow_rgb/explora_dinov2_vit_large_fmow_rgb_encoder_only.pth", map_location="cpu")
5state_dict = ckpt["model"]explora_mae_multispectral/| Description | ViT-L |
|---|---|
| MAE encoder & decoder weights + ExPLoRA adapters | ViT-L/16 |
| Encoder-only weights | ViT-L/16 |
1import torch
2
3# Load encoder-only checkpoint (recommended for fine-tuning)
4ckpt = torch.load("explora_mae_multispectral/explora_mae_fmow_sentinel_encoder_only.pth", map_location="cpu")
5state_dict = ckpt["model"]finetune/finetune.py script:1python finetune/finetune.py \
2 --finetune path/to/explora_checkpoint.pth \
3 --model vit_large_patch16 \
4 --dataset_type rgb \
5 ...scripts/ in the codebase, and you can use these checkpoints there.1@inproceedings{khanna2025explora,
2 title={Ex{PL}o{RA}: Parameter-Efficient Extended Pre-Training to Adapt Vision Transformers under Domain Shifts},
3 author={Samar Khanna and Medhanie Irgau and David B. Lobell and Stefano Ermon},
4 booktitle={Forty-second International Conference on Machine Learning},
5 year={2025},
6 url={https://openreview.net/forum?id=OtxLhobhwb}
7}