Views
No views yet
python -m birder.tools download-model mae_hiera_hiera_abswin_basepython -m birder.scripts.train_mim --network mae_hiera --encoder hiera_abswin_base --pretrained --opt adamw --lr 0.0008 --opt-betas 0.9 0.95 --lr-scheduler cosine --warmup-epochs 40 --epochs 400 --batch-size 512 --wd 0.05 --encoder-model-config drop_path_rate=0.2 --amp --compile --compile-opt --find-unused-parameters --data-path data/training1import torch
2from birder.common import fs_ops
3
4device = torch.device("cuda")
5(net, rgb_stats, training_states) = fs_ops.load_mim_checkpoint(
6 device,
7 "mae_hiera",
8 encoder="hiera_abswin_base",
9 epoch=None,
10)1@misc{ryali2023hierahierarchicalvisiontransformer,
2 title={Hiera: A Hierarchical Vision Transformer without the Bells-and-Whistles},
3 author={Chaitanya Ryali and Yuan-Ting Hu and Daniel Bolya and Chen Wei and Haoqi Fan and Po-Yao Huang and Vaibhav Aggarwal and Arkabandhu Chowdhury and Omid Poursaeed and Judy Hoffman and Jitendra Malik and Yanghao Li and Christoph Feichtenhofer},
4 year={2023},
5 eprint={2306.00989},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2306.00989},
9}
10
11@misc{bolya2023windowattentionbuggedinterpolate,
12 title={Window Attention is Bugged: How not to Interpolate Position Embeddings},
13 author={Daniel Bolya and Chaitanya Ryali and Judy Hoffman and Christoph Feichtenhofer},
14 year={2023},
15 eprint={2311.05613},
16 archivePrefix={arXiv},
17 primaryClass={cs.CV},
18 url={https://arxiv.org/abs/2311.05613},
19}