Views
No views yet
| Checkpoint | Resolution | Training stage |
|---|---|---|
| Bio-DINO 224px | 224 x 224 | Initial and longest DINOv2 training stage |
| Bio-DINO 252px | 252 x 252 | Continued training from the 224px stage |
python -m birder.tools download-model dino_v2_vit_reg4_so150m_p14_ls_bio-252px1torchrun --nproc_per_node=8 -m birder.scripts.train_dino_v2 \
2 --network vit_reg4_so150m_p14_ls --tag bio-252px \
3 --dino-out-dim 98304 --head-bottleneck-dim 320 \
4 --ibot-separate-head --ibot-out-dim 98304 \
5 --momentum-teacher 0.998 \
6 --warmup-teacher-temp-epochs 15 --freeze-last-layer-epochs 0 \
7 --local-crop-size 112 --batch-size 64 \
8 --opt adamw --opt-fused \
9 --clip-grad-norm 3 \
10 --grad-accum-steps 8 \
11 --lr 0.0001 --lr-scale 1024 --lr-scale-type sqrt \
12 --wd 0.1 \
13 --lr-scheduler-update step \
14 --lr-scheduler cosine --lr-cosine-min 1e-6 \
15 --epochs 100 --steps-per-epoch 5000 \
16 --size 252 \
17 --rgb-mode centered \
18 --fast-matmul --compile \
19 --resume-epoch 0 \
20 --distributed-mode fsdp --fsdp-sharding-strategy shard-grad-op --fsdp-param-dtype bfloat16 --fsdp-reduce-dtype float32 \
21 --no-broadcast-buffers \
22 --data-path data/some_training_data1@misc{dosovitskiy2021imageworth16x16words,
2 title={An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale},
3 author={Alexey Dosovitskiy and Lucas Beyer and Alexander Kolesnikov and Dirk Weissenborn and Xiaohua Zhai and Thomas Unterthiner and Mostafa Dehghani and Matthias Minderer and Georg Heigold and Sylvain Gelly and Jakob Uszkoreit and Neil Houlsby},
4 year={2021},
5 eprint={2010.11929},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2010.11929},
9}
10
11@misc{darcet2024visiontransformersneedregisters,
12 title={Vision Transformers Need Registers},
13 author={Timothée Darcet and Maxime Oquab and Julien Mairal and Piotr Bojanowski},
14 year={2024},
15 eprint={2309.16588},
16 archivePrefix={arXiv},
17 primaryClass={cs.CV},
18 url={https://arxiv.org/abs/2309.16588},
19}
20
21@misc{alabdulmohsin2024gettingvitshapescaling,
22 title={Getting ViT in Shape: Scaling Laws for Compute-Optimal Model Design},
23 author={Ibrahim Alabdulmohsin and Xiaohua Zhai and Alexander Kolesnikov and Lucas Beyer},
24 year={2024},
25 eprint={2305.13035},
26 archivePrefix={arXiv},
27 primaryClass={cs.CV},
28 url={https://arxiv.org/abs/2305.13035},
29}
30
31@misc{oquab2024dinov2learningrobustvisual,
32 title={DINOv2: Learning Robust Visual Features without Supervision},
33 author={Maxime Oquab and Timothée Darcet and Théo Moutakanni and Huy Vo and Marc Szafraniec and Vasil Khalidov and Pierre Fernandez and Daniel Haziza and Francisco Massa and Alaaeldin El-Nouby and Mahmoud Assran and Nicolas Ballas and Wojciech Galuba and Russell Howes and Po-Yao Huang and Shang-Wen Li and Ishan Misra and Michael Rabbat and Vasu Sharma and Gabriel Synnaeve and Hu Xu and Hervé Jegou and Julien Mairal and Patrick Labatut and Armand Joulin and Piotr Bojanowski},
34 year={2024},
35 eprint={2304.07193},
36 archivePrefix={arXiv},
37 primaryClass={cs.CV},
38 url={https://arxiv.org/abs/2304.07193},
39}