Skip to content

Commit f06d3bc

Browse files
authored
Bump to v0.5.0 (#281)
* update readme * update changelog * update * add citation * add citation
1 parent e23ebb1 commit f06d3bc

File tree

3 files changed

+28
-17
lines changed

3 files changed

+28
-17
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,9 @@ The repo name detrex has several interpretations:
7878
- <font color=#008000> <b> de-t.rex </b> </font>: de means 'the' in Dutch. T.rex, also called Tyrannosaurus Rex, means 'king of the tyrant lizards' and connects to our research work 'DINO', which is short for Dinosaur.
7979

8080
## What's New
81-
v0.4.0 was released on 02/06/2023:
82-
- Support [CO-MOT](./projects/co_mot/) aims for End-to-End Multi-Object Tracking by [Feng Yan](https://scholar.google.com/citations?user=gO4divAAAAAJ&hl=zh-CN&oi=sra).
83-
- Release `DINO` with optimized hyper-parameters which achieves `50.0 AP` under 1x settings.
84-
- Release pretrained DINO based on `InternImage`, `ConvNeXt-1K pretrained` backbones.
85-
- Release `Deformable-DETR-R50` pretrained weights.
86-
- Release `DETA` and better `H-DETR` pretrained weights: achieving `50.2 AP` and `49.1 AP` respectively.
87-
88-
81+
v0.5.0 was released on 16/07/2023:
82+
- Support [SQR-DETR (CVPR 2023)](https://github.com/IDEA-Research/detrex/tree/main/projects/sqr_detr), credits to [Fangyi Chen](https://github.com/Fangyi-Chen)
83+
- Support [EVA-01](https://github.com/baaivision/EVA/tree/master/EVA-01) and [EVA-02](https://github.com/baaivision/EVA/tree/master/EVA-02) backbones, please check [DINO-EVA](./projects/dino_eva/) for more benchmarking results.
8984

9085
Please see [changelog.md](./changlog.md) for details and release history.
9186

@@ -134,6 +129,8 @@ Results and models are available in [model zoo](https://detrex.readthedocs.io/en
134129
- [x] [MaskDINO (CVPR'2023)](./projects/maskdino/)
135130
- [x] [CO-MOT (ArXiv'2023)](./projects/co_mot/)
136131
- [x] [SQR-DETR (CVPR'2023)](./projects/sqr_detr/)
132+
- [x] [EVA-01 (CVPR'2023 Highlight)](./projects/dino_eva/)
133+
- [x] [EVA-02 (ArXiv'2023)](./projects/dino_eva/)
137134

138135
Please see [projects](./projects/) for the details about projects that are built based on detrex.
139136

changlog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Change Log
22

3+
### v0.5.0 (16/07/2023):
4+
- Support [SQR-DETR (CVPR 2023)](https://github.com/IDEA-Research/detrex/tree/main/projects/sqr_detr), credits to [Fangyi Chen](https://github.com/Fangyi-Chen)
5+
- Support [EVA-01](https://github.com/baaivision/EVA/tree/master/EVA-01) and [EVA-02](https://github.com/baaivision/EVA/tree/master/EVA-02) backbones, please check [DINO-EVA](https://github.com/IDEA-Research/detrex/tree/main/projects/dino_eva) for more benchmarking results.
6+
7+
38
### v0.4.0 (02/06/2023):
49
- Support [CO-MOT](./projects/co_mot/) aims for End-to-End Multi-Object Tracking by [Feng Yan](https://scholar.google.com/citations?user=gO4divAAAAAJ&hl=zh-CN&oi=sra).
510
- Release `DINO` with optimized hyper-parameters which achieves `50.0 AP` under 1x settings.

projects/dino_eva/README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,24 @@ python tools/train_net.py --config-file projects/dino_eva/configs/path/to/config
7878
## Citing DINO and EVA
7979
If you find our work helpful for your research, please consider citing the following BibTeX entry.
8080

81+
```BibTex
82+
@article{EVA,
83+
title={EVA: Exploring the Limits of Masked Visual Representation Learning at Scale},
84+
author={Fang, Yuxin and Wang, Wen and Xie, Binhui and Sun, Quan and Wu, Ledell and Wang, Xinggang and Huang, Tiejun and Wang, Xinlong and Cao, Yue},
85+
journal={arXiv preprint arXiv:2211.07636},
86+
year={2022}
87+
}
88+
```
89+
90+
```BibTex
91+
@article{EVA02,
92+
title={EVA-02: A Visual Representation for Neon Genesis},
93+
author={Fang, Yuxin and Sun, Quan and Wang, Xinggang and Huang, Tiejun and Wang, Xinlong and Cao, Yue},
94+
journal={arXiv preprint arXiv:2303.11331},
95+
year={2023}
96+
}
97+
```
98+
8199
```BibTex
82100
@misc{zhang2022dino,
83101
title={DINO: DETR with Improved DeNoising Anchor Boxes for End-to-End Object Detection},
@@ -87,13 +105,4 @@ If you find our work helpful for your research, please consider citing the follo
87105
archivePrefix={arXiv},
88106
primaryClass={cs.CV}
89107
}
90-
```
91-
92-
```BibTex
93-
@article{EVA,
94-
title={EVA: Exploring the Limits of Masked Visual Representation Learning at Scale},
95-
author={Fang, Yuxin and Wang, Wen and Xie, Binhui and Sun, Quan and Wu, Ledell and Wang, Xinggang and Huang, Tiejun and Wang, Xinlong and Cao, Yue},
96-
journal={arXiv preprint arXiv:2211.07636},
97-
year={2022}
98-
}
99108
```

0 commit comments

Comments
 (0)