Skip to content

Commit 159d925

Browse files
authored
Add DETR readme.md (open-mmlab#4206)
* Add DETR readme.md * update model zoo * fix typo
1 parent 8179440 commit 159d925

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ Supported methods:
104104
- [x] [YOLACT](configs/yolact/README.md)
105105
- [x] [CentripetalNet](configs/centripetalnet/README.md)
106106
- [x] [VFNet](configs/vfnet/README.md)
107+
- [x] [DETR](configs/detr/README.md)
107108

108109
Some other methods are also supported in [projects using MMDetection](./docs/projects.md).
109110

configs/detr/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# DETR
2+
3+
## Introduction
4+
5+
We provide the config files for DETR: [End-to-End Object Detection with Transformers](https://arxiv.org/abs/2005.12872).
6+
7+
```BibTeX
8+
@inproceedings{detr,
9+
author = {Nicolas Carion and
10+
Francisco Massa and
11+
Gabriel Synnaeve and
12+
Nicolas Usunier and
13+
Alexander Kirillov and
14+
Sergey Zagoruyko},
15+
title = {End-to-End Object Detection with Transformers},
16+
booktitle = {ECCV},
17+
year = {2020}
18+
}
19+
```
20+
21+
## Results and Models
22+
23+
| Backbone | Model | Lr schd | Mem (GB) | Inf time (fps) | box AP | Config | Download |
24+
|:------:|:--------:|:-------:|:--------:|:--------------:|:------:|:------:|:--------:|
25+
| R-50 | DETR |150e || | | [config](https://github.com/open-mmlab/mmdetection/tree/master/configs/detr/detr_r50_8x4_150e_coco.py) | [model]() | [log]() |

docs/model_zoo.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@ Please refer to [CentripetalNet](https://github.com/open-mmlab/mmdetection/blob/
162162
### ResNeSt
163163
Please refer to [ResNeSt](https://github.com/open-mmlab/mmdetection/blob/master/configs/resnest) for details.
164164

165+
### DETR
166+
Please refer to [DETR](https://github.com/open-mmlab/mmdetection/blob/master/configs/detr) for details.
167+
165168
### Other datasets
166169

167170
We also benchmark some methods on [PASCAL VOC](https://github.com/open-mmlab/mmdetection/blob/master/configs/pascal_voc), [Cityscapes](https://github.com/open-mmlab/mmdetection/blob/master/configs/cityscapes) and [WIDER FACE](https://github.com/open-mmlab/mmdetection/blob/master/configs/wider_face).

0 commit comments

Comments
 (0)