Skip to content

Commit ebdf1cf

Browse files
Bump version to 1.0.0rc4 (#1600)
* Bump version to 1.0.0rc4 * update changelog * fix * update readme * Update README.md Co-authored-by: liukuikun <[email protected]> Co-authored-by: liukuikun <[email protected]>
1 parent f4940de commit ebdf1cf

File tree

6 files changed

+83
-1
lines changed

6 files changed

+83
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ The main branch works with **PyTorch 1.6+**.
8383

8484
6. **One-stop Dataset Preparaion**. Multiple datasets are instantly ready with only one line of command, via our [Dataset Preparer](https://mmocr.readthedocs.io/en/dev-1.x/user_guides/data_prepare/dataset_preparer.html).
8585

86+
7. **Embracing more `projects/`**: We now introduce `projects/` folder, where some experimental features, frameworks and models can be placed, only needed to satisfy the minimum requirement on the code quality. Everyone is welcome to post their implementation of any great ideas in this folder! Learn more from our [example project](https://github.com/open-mmlab/mmocr/blob/dev-1.x/projects/example_project/).
87+
88+
8. **More models**. MMOCR 1.0 supports more tasks and more state-of-the-art models!
89+
8690
Read [Changelog](https://mmocr.readthedocs.io/en/dev-1.x/notes/changelog.html) for more details!
8791

8892
## Installation

README_zh-CN.md

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ MMOCR 的模块化设计使用户可以定义自己的优化器,数据预处
8484

8585
6. 一站式数据准备:准备数据集已经不再是难事。使用我们的 [Dataset Preparer](https://mmocr.readthedocs.io/zh_CN/dev-1.x/user_guides/data_prepare/dataset_preparer.html),一行命令即可让多个数据集准备就绪。
8686

87+
7. 拥抱更多 `projects/`: 我们推出了 `projects/` 文件夹,用于存放一些实验性的新特性、框架和模型。我们对这个文件夹下的代码规范不作过多要求,力求让社区的所有想法第一时间得到实现和展示。请查看我们的[样例 project](https://github.com/open-mmlab/mmocr/blob/dev-1.x/projects/example_project/) 以了解更多。
88+
89+
8. 更多新模型:MMOCR 1.0 支持了更多模型和模型种类。
90+
8791
阅读[更新日志](https://mmocr.readthedocs.io/zh_CN/dev-1.x/notes/changelog.html)以获取更多信息。
8892

8993
## 安装

docs/en/get_started/install.md

+1
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,5 @@ MMOCR has different version requirements on MMEngine, MMCV and MMDetection at ea
194194
| MMOCR | MMEngine | MMCV | MMDetection |
195195
| -------------- | --------------------------- | -------------------------- | --------------------------- |
196196
| dev-1.x | 0.1.0 \<= mmengine \< 1.0.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |
197+
| 1.0.0rc4 | 0.1.0 \<= mmengine \< 1.0.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |
197198
| 1.0.0rc\[0-3\] | 0.0.0 \<= mmengine \< 0.2.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |

docs/en/notes/changelog.md

+72
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,77 @@
11
# Changelog of v1.x
22

3+
## v1.0.0rc4 (06/12/2022)
4+
5+
### Highlights
6+
7+
1. Dataset Preparer can automatically generate base dataset configs at the end of the preparation process, and supports 6 more datasets: IIIT5k, CUTE80, ICDAR2013, ICDAR2015, SVT, SVTP.
8+
2. Introducing our `projects/` folder - implementing new models and features into OpenMMLab's algorithm libraries has long been complained to be troublesome due to the rigorous requirements on code quality, which could hinder the fast iteration of SOTA models and might discourage community members from sharing their latest outcome here. We now introduce `projects/` folder, where some experimental features, frameworks and models can be placed, only needed to satisfy the minimum requirement on the code quality. Everyone is welcome to post their implementation of any great ideas in this folder! We also add the first [example project](https://github.com/open-mmlab/mmocr/tree/dev-1.x/projects/example_project) to illustrate what we expect a good project to have (check out the raw content of README.md for more info!).
9+
3. Inside the `projects/` folder, we are releasing the preview version of ABCNet, which is the first implementation of text spotting models in MMOCR. It's inference-only now, but the full implementation will be available very soon.
10+
11+
### New Features & Enhancements
12+
13+
- Add SVT to dataset preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1521
14+
- Polish bbox2poly by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1532
15+
- Add SVTP to dataset preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1523
16+
- Iiit5k converter by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1530
17+
- Add cute80 to dataset preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1522
18+
- Add IC13 preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1531
19+
- Add 'Projects/' folder, and the first example project by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1524
20+
- Rename to {dataset-name}\_task_train/test by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1541
21+
- Add print_config.py to the tools by @IncludeMathH in https://github.com/open-mmlab/mmocr/pull/1547
22+
- Add get_md5 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1553
23+
- Add config generator by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1552
24+
- Support IC15_1811 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1556
25+
- Update CT80 config by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1555
26+
- Add config generators to all textdet and textrecog configs by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1560
27+
- Refactor TPS by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1240
28+
- Add TextSpottingConfigGenerator by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1561
29+
- Add common typing by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1596
30+
- Update textrecog config and readme by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1597
31+
- Support head loss or postprocessor is None for only infer by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1594
32+
- Textspotting datasample by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1593
33+
- Simplify mono_gather by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1588
34+
- ABCNet v1 infer by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1598
35+
36+
### Docs
37+
38+
- Add Chinese Guidance on How to Add New Datasets to Dataset Preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1506
39+
- Update the qq group link by @vansin in https://github.com/open-mmlab/mmocr/pull/1569
40+
- Collapse some sections; update logo url by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1571
41+
- Update dataset preparer (CN) by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1591
42+
43+
### Bug Fixes
44+
45+
- Fix two bugs in dataset preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1513
46+
- Register bug of CLIPResNet by @jyshee in https://github.com/open-mmlab/mmocr/pull/1517
47+
- Being more conservative on Dataset Preparer by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1520
48+
- python -m pip upgrade in windows by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1525
49+
- Fix wildreceipt metafile by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1528
50+
- Fix Dataset Preparer Extract by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1527
51+
- Fix ICDARTxtParser by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1529
52+
- Fix Dataset Zoo Script by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1533
53+
- Fix crop without padding and recog metainfo delete unuse info by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1526
54+
- Automatically create nonexistent directory for base configs by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1535
55+
- Change mmcv.dump to mmengine.dump by @ProtossDragoon in https://github.com/open-mmlab/mmocr/pull/1540
56+
- mmocr.utils.typing -> mmocr.utils.typing_utils by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1538
57+
- Wildreceipt tests by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1546
58+
- Fix judge exist dir by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1542
59+
- Fix IC13 textdet config by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1563
60+
- Fix IC13 textrecog annotations by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1568
61+
- Auto scale lr by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1584
62+
- Fix icdar data parse for text containing separator by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1587
63+
- Fix textspotting ut by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1599
64+
- Fix TextSpottingConfigGenerator and TextSpottingDataConverter by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1604
65+
- Keep E2E Inferencer output simple by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1559
66+
67+
### New Contributors
68+
69+
- @jyshee made their first contribution in https://github.com/open-mmlab/mmocr/pull/1517
70+
- @ProtossDragoon made their first contribution in https://github.com/open-mmlab/mmocr/pull/1540
71+
- @IncludeMathH made their first contribution in https://github.com/open-mmlab/mmocr/pull/1547
72+
73+
**Full Changelog**: https://github.com/open-mmlab/mmocr/compare/v1.0.0rc3...v1.0.0rc4
74+
375
## v1.0.0rc3 (03/11/2022)
476

577
### Highlights

docs/zh_cn/get_started/install.md

+1
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,5 @@ docker run --gpus all --shm-size=8g -it -v {实际数据目录}:/mmocr/data mmoc
195195
| MMOCR | MMEngine | MMCV | MMDetection |
196196
| -------------- | --------------------------- | -------------------------- | --------------------------- |
197197
| dev-1.x | 0.1.0 \<= mmengine \< 1.0.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |
198+
| 1.0.0rc4 | 0.1.0 \<= mmengine \< 1.0.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |
198199
| 1.0.0rc\[0-3\] | 0.0.0 \<= mmengine \< 0.2.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |

mmocr/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '1.0.0rc3'
3+
__version__ = '1.0.0rc4'
44
short_version = __version__

0 commit comments

Comments
 (0)