Skip to content

Commit 9ba04a8

Browse files
authored
[Feature] Release DINO Swin-L 36e model (#9927)
1 parent 764c098 commit 9ba04a8

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

configs/dino/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ We present DINO (DETR with Improved deNoising anchOr boxes), a state-of-the-art
1818
| :------: | :---------: | :-----: | :----: | :---------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
1919
| R-50 | DINO-4scale | 12e | 49.0 | [config](./dino-4scale_r50_8xb2-12e_coco.py) | [model](https://download.openmmlab.com/mmdetection/v3.0/dino/dino-4scale_r50_8xb2-12e_coco/dino-4scale_r50_8xb2-12e_coco_20221202_182705-55b2bba2.pth) \| [log](https://download.openmmlab.com/mmdetection/v3.0/dino/dino-4scale_r50_8xb2-12e_coco/dino-4scale_r50_8xb2-12e_coco_20221202_182705.log.json) |
2020
| Swin-L | DINO-5scale | 12e | 57.2 | [config](./dino-5scale_swin-l_8xb2-12e_coco.py) | [model](https://download.openmmlab.com/mmdetection/v3.0/dino/dino-5scale_swin-l_8xb2-12e_coco/dino-5scale_swin-l_8xb2-12e_coco_20230228_072924-a654145f.pth) \| [log](https://download.openmmlab.com/mmdetection/v3.0/dino/dino-5scale_swin-l_8xb2-12e_coco/dino-5scale_swin-l_8xb2-12e_coco_20230228_072924.log) |
21+
| Swin-L | DINO-5scale | 36e | 58.4 | [config](./dino-5scale_swin-l_8xb2-36e_coco.py) | [model](https://github.com/RistoranteRist/mmlab-weights/releases/download/dino-swinl/dino-5scale_swin-l_8xb2-36e_coco-5486e051.pth) \| [log](https://github.com/RistoranteRist/mmlab-weights/releases/download/dino-swinl/20230307_032359.log) |
2122

2223
### NOTE
2324

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
_base_ = './dino-5scale_swin-l_8xb2-12e_coco.py'
2+
max_epochs = 36
3+
train_cfg = dict(
4+
type='EpochBasedTrainLoop', max_epochs=max_epochs, val_interval=1)
5+
param_scheduler = [
6+
dict(
7+
type='MultiStepLR',
8+
begin=0,
9+
end=max_epochs,
10+
by_epoch=True,
11+
milestones=[27, 33],
12+
gamma=0.1)
13+
]

configs/dino/metafile.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,15 @@ Models:
6060
Metrics:
6161
box AP: 57.2
6262
Weights: https://download.openmmlab.com/mmdetection/v3.0/dino/dino-5scale_swin-l_8xb2-12e_coco/dino-5scale_swin-l_8xb2-12e_coco_20230228_072924-a654145f.pth
63+
64+
- Name: dino-5scale_swin-l_8xb2-36e_coco.py
65+
In Collection: DINO
66+
Config: configs/dino/dino-5scale_swin-l_8xb2-36e_coco.py
67+
Metadata:
68+
Epochs: 36
69+
Results:
70+
- Task: Object Detection
71+
Dataset: COCO
72+
Metrics:
73+
box AP: 58.4
74+
Weights: https://github.com/RistoranteRist/mmlab-weights/releases/download/dino-swinl/dino-5scale_swin-l_8xb2-36e_coco-5486e051.pth

0 commit comments

Comments
 (0)