-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release dino-eva 1280 checkpoint (#338)
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
projects/dino_eva/configs/dino-eva-02/dino_eva_02_vitdet_l_4attn_1280_lrd0p8_4scale_12ep.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
from functools import partial | ||
from detrex.config import get_config | ||
from detrex.modeling.backbone.eva import get_vit_lr_decay_rate | ||
|
||
from ..models.dino_eva_02 import model | ||
from ..common.coco_loader_lsj_1280 import dataloader | ||
|
||
# get default config | ||
optimizer = get_config("common/optim.py").AdamW | ||
lr_multiplier = get_config("common/coco_schedule.py").lr_multiplier_12ep | ||
train = get_config("common/train.py").train | ||
|
||
|
||
# modify model config | ||
model.backbone.net.img_size = 1280 | ||
model.backbone.square_pad = 1280 | ||
model.backbone.net.patch_size = 16 | ||
model.backbone.net.window_size = 16 | ||
model.backbone.net.embed_dim = 1024 | ||
model.backbone.net.depth = 24 | ||
model.backbone.net.num_heads = 16 | ||
model.backbone.net.mlp_ratio = 4*2/3 | ||
model.backbone.net.use_act_checkpoint = True | ||
model.backbone.net.drop_path_rate = 0.4 | ||
|
||
# 5, 11, 17, 23 for global attention | ||
model.backbone.net.window_block_indexes = ( | ||
list(range(0, 5)) + list(range(6, 11)) + list(range(12, 17)) + list(range(18, 23)) | ||
) | ||
|
||
# modify training config | ||
train.init_checkpoint = "/path/to/eva02_L_pt_m38m_p14to16.pt" | ||
train.output_dir = "./output/dino_eva_02_vitdet_l_4attn_1024_lrd0p8_4scale_12ep" | ||
|
||
# max training iterations | ||
train.max_iter = 90000 | ||
|
||
|
||
# gradient clipping for training | ||
train.clip_grad.enabled = True | ||
train.clip_grad.params.max_norm = 0.1 | ||
train.clip_grad.params.norm_type = 2 | ||
|
||
# set training devices | ||
train.device = "cuda" | ||
model.device = train.device | ||
|
||
# modify optimizer config | ||
optimizer.lr = 1e-4 | ||
optimizer.betas = (0.9, 0.999) | ||
optimizer.weight_decay = 1e-4 | ||
optimizer.params.lr_factor_func = partial(get_vit_lr_decay_rate, lr_decay_rate=0.8, num_layers=24) | ||
optimizer.params.overrides = {} | ||
optimizer.params.weight_decay_norm = None | ||
|
||
# modify dataloader config | ||
dataloader.train.num_workers = 16 | ||
|
||
# please notice that this is total batch size. | ||
# surpose you're using 4 gpus for training and the batch size for | ||
# each gpu is 16/4 = 4 | ||
dataloader.train.total_batch_size = 16 | ||
|