Skip to content

Commit 44ebd17

Browse files
authored
bump version to 3.3.0 (#11347)
2 parents fe3f809 + 436d488 commit 44ebd17

File tree

152 files changed

+19080
-301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+19080
-301
lines changed

README.md

+5-39
Original file line numberDiff line numberDiff line change
@@ -103,50 +103,16 @@ Apart from MMDetection, we also released [MMEngine](https://github.com/open-mmla
103103

104104
### Highlight
105105

106-
**v3.2.0** was released in 12/10/2023:
106+
**v3.3.0** was released in 5/1/2024:
107107

108-
**1. Detection Transformer SOTA Model Collection**
109-
(1) Supported four updated and stronger SOTA Transformer models: [DDQ](configs/ddq/README.md), [CO-DETR](projects/CO-DETR/README.md), [AlignDETR](projects/AlignDETR/README.md), and [H-DINO](projects/HDINO/README.md).
110-
(2) Based on CO-DETR, MMDet released a model with a COCO performance of 64.1 mAP.
111-
(3) Algorithms such as DINO support `AMP/Checkpoint/FrozenBN`, which can effectively reduce memory usage.
108+
**[MM-Grounding-DINO: An Open and Comprehensive Pipeline for Unified Object Grounding and Detection](https://arxiv.org/abs/2401.02361)**
112109

113-
**2. [Comprehensive Performance Comparison between CNN and Transformer](<(projects/RF100-Benchmark/README.md)>)**
114-
RF100 consists of a dataset collection of 100 real-world datasets, including 7 domains. It can be used to assess the performance differences of Transformer models like DINO and CNN-based algorithms under different scenarios and data volumes. Users can utilize this benchmark to quickly evaluate the robustness of their algorithms in various scenarios.
110+
Grounding DINO is a grounding pre-training model that unifies 2d open vocabulary object detection and phrase grounding, with wide applications. However, its training part has not been open sourced. Therefore, we propose MM-Grounding-DINO, which not only serves as an open source replication version of Grounding DINO, but also achieves significant performance improvement based on reconstructed data types, exploring different dataset combinations and initialization strategies. Moreover, we conduct evaluations from multiple dimensions, including OOD, REC, Phrase Grounding, OVD, and Fine-tune, to fully excavate the advantages and disadvantages of Grounding pre-training, hoping to provide inspiration for future work.
115111

116-
<div align=center>
117-
<img src="https://github.com/open-mmlab/mmdetection/assets/17425982/86420903-36a8-410d-9251-4304b9704f7d"/>
118-
</div>
119-
120-
**3. Support for [GLIP](configs/glip/README.md) and [Grounding DINO](configs/grounding_dino/README.md) fine-tuning, the only algorithm library that supports Grounding DINO fine-tuning**
121-
The Grounding DINO algorithm in MMDet is the only library that supports fine-tuning. Its performance is one point higher than the official version, and of course, GLIP also outperforms the official version.
122-
We also provide a detailed process for training and evaluating Grounding DINO on custom datasets. Everyone is welcome to give it a try.
123-
124-
| Model | Backbone | Style | COCO mAP | Official COCO mAP |
125-
| :----------------: | :------: | :-------: | :--------: | :---------------: |
126-
| Grounding DINO-T | Swin-T | Zero-shot | 48.5 | 48.4 |
127-
| Grounding DINO-T | Swin-T | Finetune | 58.1(+0.9) | 57.2 |
128-
| Grounding DINO-B | Swin-B | Zero-shot | 56.9 | 56.7 |
129-
| Grounding DINO-B | Swin-B | Finetune | 59.7 | |
130-
| Grounding DINO-R50 | R50 | Scratch | 48.9(+0.8) | 48.1 |
131-
132-
**4. Support for the open-vocabulary detection algorithm [Detic](projects/Detic_new/README.md) and multi-dataset joint training.**
133-
**5. Training detection models using [FSDP and DeepSpeed](<(projects/example_largemodel/README.md)>).**
134-
135-
| ID | AMP | GC of Backbone | GC of Encoder | FSDP | Peak Mem (GB) | Iter Time (s) |
136-
| :-: | :-: | :------------: | :-----------: | :--: | :-----------: | :-----------: |
137-
| 1 | | | | | 49 (A100) | 0.9 |
138-
| 2 || | | | 39 (A100) | 1.2 |
139-
| 3 | || | | 33 (A100) | 1.1 |
140-
| 4 ||| | | 25 (A100) | 1.3 |
141-
| 5 | ||| | 18 | 2.2 |
142-
| 6 |||| | 13 | 1.6 |
143-
| 7 | |||| 14 | 2.9 |
144-
| 8 ||||| 8.5 | 2.4 |
145-
146-
**6. Support for the [V3Det](configs/v3det/README.md) dataset, a large-scale detection dataset with over 13,000 categories.**
112+
code: [mm_grounding_dino/README.md](configs/mm_grounding_dino/README.md)
147113

148114
<div align=center>
149-
<img width=960 src="https://github.com/open-mmlab/mmdetection/assets/17425982/9c216387-02be-46e6-b0f2-b856f80f6d84"/>
115+
<img src="https://github.com/open-mmlab/mmdetection/assets/17425982/fb14d1ee-5469-44d2-b865-aac9850c429c"/>
150116
</div>
151117

152118
We are excited to announce our latest work on real-time object recognition tasks, **RTMDet**, a family of fully convolutional single-stage detectors. RTMDet not only achieves the best parameter-accuracy trade-off on object detection from tiny to extra-large model sizes but also obtains new state-of-the-art performance on instance segmentation and rotated object detection tasks. Details can be found in the [technical report](https://arxiv.org/abs/2212.07784). Pre-trained models are [here](configs/rtmdet).

README_zh-CN.md

+6-39
Original file line numberDiff line numberDiff line change
@@ -102,51 +102,18 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
102102

103103
### 亮点
104104

105-
**v3.2.0** 版本已经在 2023.10.12 发布:
105+
**v3.3.0** 版本已经在 2024.1.5 发布:
106106

107-
**1. 检测 Transformer SOTA 模型大合集**
108-
(1) 支持了 [DDQ](configs/ddq/README.md)[CO-DETR](projects/CO-DETR/README.md)[AlignDETR](projects/AlignDETR/README.md)[H-DINO](projects/HDINO/README.md) 4 个更新更强的 SOTA Transformer 模型
109-
(2) 基于 CO-DETR, MMDet 中发布了 COCO 性能为 64.1 mAP 的模型
110-
(3) DINO 等算法支持 AMP/Checkpoint/FrozenBN,可以有效降低显存
107+
**MM-Grounding-DINO: 轻松涨点,数据到评测全面开源**
111108

112-
**2. [提供了全面的 CNN 和 Transformer 的性能对比](projects/RF100-Benchmark/README_zh-CN.md)**
113-
RF100 是由 100 个现实收集的数据集组成,包括 7 个域,可以验证 DINO 等 Transformer 模型和 CNN 类算法在不同场景不同数据量下的性能差异。用户可以用这个 Benchmark 快速验证自己的算法在不同场景下的鲁棒性。
109+
Grounding DINO 是一个统一了 2d 开放词汇目标检测和 Phrase Grounding 的检测预训练模型,应用广泛,但是其训练部分并未开源,为此提出了 MM-Grounding-DINO。其不仅作为 Grounding DINO 的开源复现版,MM-Grounding-DINO 基于重新构建的数据类型出发,在探索了不同数据集组合和初始化策略基础上实现了 Grounding DINO 的性能极大提升,并且从多个维度包括 OOD、REC、Phrase Grounding、OVD 和 Finetune 等方面进行评测,充分挖掘 Grounding 预训练优缺点,希望能为后续工作提供启发。
114110

115-
<div align=center>
116-
<img src="https://github.com/open-mmlab/mmdetection/assets/17425982/86420903-36a8-410d-9251-4304b9704f7d"/>
117-
</div>
118-
119-
**3. 支持了 [GLIP](configs/glip/README.md)[Grounding DINO](configs/grounding_dino/README.md) 微调,全网唯一支持 Grounding DINO 微调**
120-
MMDet 中的 Grounding DINO 是全网唯一支持微调的算法库,且性能高于官方 1 个点,当然 GLIP 也比官方高。
121-
我们还提供了详细的 Grounding DINO 在自定义数据集上训练评估的流程,欢迎大家试用。
122-
123-
| Model | Backbone | Style | COCO mAP | Official COCO mAP |
124-
| :----------------: | :------: | :-------: | :--------: | :---------------: |
125-
| Grounding DINO-T | Swin-T | Zero-shot | 48.5 | 48.4 |
126-
| Grounding DINO-T | Swin-T | Finetune | 58.1(+0.9) | 57.2 |
127-
| Grounding DINO-B | Swin-B | Zero-shot | 56.9 | 56.7 |
128-
| Grounding DINO-B | Swin-B | Finetune | 59.7 | |
129-
| Grounding DINO-R50 | R50 | Scratch | 48.9(+0.8) | 48.1 |
130-
131-
**4. 支持开放词汇检测算法 [Detic](projects/Detic_new/README.md) 并提供多数据集联合训练可能**
132-
133-
**5. 轻松使用 [FSDP 和 DeepSpeed 训练检测模型](projects/example_largemodel/README_zh-CN.md)**
134-
135-
| ID | AMP | GC of Backbone | GC of Encoder | FSDP | Peak Mem (GB) | Iter Time (s) |
136-
| :-: | :-: | :------------: | :-----------: | :--: | :-----------: | :-----------: |
137-
| 1 | | | | | 49 (A100) | 0.9 |
138-
| 2 || | | | 39 (A100) | 1.2 |
139-
| 3 | || | | 33 (A100) | 1.1 |
140-
| 4 ||| | | 25 (A100) | 1.3 |
141-
| 5 | ||| | 18 | 2.2 |
142-
| 6 |||| | 13 | 1.6 |
143-
| 7 | |||| 14 | 2.9 |
144-
| 8 ||||| 8.5 | 2.4 |
111+
arxiv 技术报告:https://arxiv.org/abs/2401.02361
145112

146-
**6. 支持了 [V3Det](configs/v3det/README.md) 1.3w+ 类别的超大词汇检测数据集**
113+
代码地址: [mm_grounding_dino/README.md](configs/mm_grounding_dino/README.md)
147114

148115
<div align=center>
149-
<img width=960 src="https://github.com/open-mmlab/mmdetection/assets/17425982/9c216387-02be-46e6-b0f2-b856f80f6d84"/>
116+
<img src="https://github.com/open-mmlab/mmdetection/assets/17425982/fb14d1ee-5469-44d2-b865-aac9850c429c"/>
150117
</div>
151118

152119
我们很高兴向大家介绍我们在实时目标识别任务方面的最新成果 RTMDet,包含了一系列的全卷积单阶段检测模型。 RTMDet 不仅在从 tiny 到 extra-large 尺寸的目标检测模型上实现了最佳的参数量和精度的平衡,而且在实时实例分割和旋转目标检测任务上取得了最先进的成果。 更多细节请参阅[技术报告](https://arxiv.org/abs/2212.07784)。 预训练模型可以在[这里](configs/rtmdet)找到。

0 commit comments

Comments
 (0)