forked from raoyongming/DenseCLIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretinanet_denseclip_r101_fpn_1x_coco.py
70 lines (69 loc) · 1.71 KB
/
retinanet_denseclip_r101_fpn_1x_coco.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
_base_ = [
"_base_/models/retinanet_r50_fpn.py",
"_base_/datasets/coco_detection_clip.py",
"_base_/default_runtime.py",
]
model = {
"type": "DenseCLIP_RetinaNet",
"pretrained": "pretrained/RN101.pt",
"context_length": 5,
"clip_head": False,
"seg_loss": True,
"text_dim": 512,
"backbone": {
"type": "CLIPResNetWithAttention",
"layers": [3, 4, 23, 3],
"output_dim": 512,
"input_resolution": 1344,
"style": "pytorch",
},
"text_encoder": {
"type": "CLIPTextContextEncoder",
"context_length": 13,
"embed_dim": 512,
"transformer_width": 512,
"transformer_heads": 8,
"transformer_layers": 12,
"style": "pytorch",
},
"context_decoder": {
"type": "ContextDecoder",
"transformer_width": 256,
"transformer_heads": 4,
"transformer_layers": 3,
"visual_dim": 512,
"dropout": 0.1,
"style": "pytorch",
},
"neck": {
"type": "FPN",
"in_channels": [256, 512, 1024, 2048 + 80],
"out_channels": 256,
"start_level": 1,
"add_extra_convs": "on_input",
"num_outs": 5,
},
}
# optimizer
optimizer = {
"type": "AdamW",
"lr": 0.0001,
"weight_decay": 0.0001,
"paramwise_cfg": {
"custom_keys": {
"backbone": {"lr_mult": 0.1},
"text_encoder": {"lr_mult": 0.0},
"norm": {"decay_mult": 0.0},
},
},
}
optimizer_config = {"grad_clip": {"max_norm": 0.1, "norm_type": 2}}
# learning policy
lr_config = {
"policy": "step",
"warmup": "linear",
"warmup_iters": 500,
"warmup_ratio": 0.001,
"step": [8, 11],
}
total_epochs = 12