Skip to content

Commit 27b6a68

Browse files
authored
Bump version to 1.0.0rc5 (#1662)
* Bump version to 1.0.0rc5 * fix * update
1 parent 37dca06 commit 27b6a68

File tree

6 files changed

+90
-9
lines changed

6 files changed

+90
-9
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,18 @@ The main branch works with **PyTorch 1.6+**.
6969

7070
The toolbox provides a comprehensive set of utilities which can help users assess the performance of models. It includes visualizers which allow visualization of images, ground truths as well as predicted bounding boxes, and a validation tool for evaluating checkpoints during training. It also includes data converters to demonstrate how to convert your own data to the annotation files which the toolbox supports.
7171

72-
## What's New
72+
## Latest Updates
73+
74+
v1.0.0rc5 was released in 2023-01-06.
75+
76+
1. Two models, Aster and SVTR, are added to our model zoo. The full implementation of ABCNet is also available now.
77+
2. Dataset Preparer supports 5 more datasets: CocoTextV2, FUNSD, TextOCR, NAF, SROIE.
78+
3. We have 4 more text recognition transforms, and two more helper transforms.
79+
4. The transform, `FixInvalidPolygon`, is getting smarter at dealing with invalid polygons, and now capable of handling more weird annotations. As a result, a complete training cycle on TotalText dataset can be performed bug-free. The weights of DBNet and FCENet pretrained on TotalText are also released.
80+
81+
Read [Changelog](https://mmocr.readthedocs.io/en/dev-1.x/notes/changelog.html) for more details!
82+
83+
## What's New in MMOCR 1.0
7384

7485
1. **New engines**. MMOCR 1.x is based on [MMEngine](https://github.com/open-mmlab/mmengine), which provides a general and powerful runner that allows more flexible customizations and significantly simplifies the entrypoints of high-level interfaces.
7586

@@ -87,8 +98,6 @@ The main branch works with **PyTorch 1.6+**.
8798

8899
8. **More models**. MMOCR 1.0 supports more tasks and more state-of-the-art models!
89100

90-
Read [Changelog](https://mmocr.readthedocs.io/en/dev-1.x/notes/changelog.html) for more details!
91-
92101
## Installation
93102

94103
MMOCR depends on [PyTorch](https://pytorch.org/), [MMEngine](https://github.com/open-mmlab/mmengine), [MMCV](https://github.com/open-mmlab/mmcv) and [MMDetection](https://github.com/open-mmlab/mmdetection).

README_zh-CN.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,18 @@ MMOCR 的模块化设计使用户可以定义自己的优化器,数据预处
7070

7171
该工具箱提供了一套全面的实用程序,可以帮助用户评估模型的性能。它包括可对图像,标注的真值以及预测结果进行可视化的可视化工具,以及用于在训练过程中评估模型的验证工具。它还包括数据转换器,演示了如何将用户自建的标注数据转换为 MMOCR 支持的标注文件。
7272

73-
## 最新进展
73+
## 近期更新
74+
75+
最新的版本 v1.0.0rc5 于 2023-01-06 发布。
76+
77+
1. 新增了 Aster 和 SVTR 模型,并完整支持了 ABCNet 的训练与测试;
78+
2. Dataset Preparer 新支持了5个数据集:CocoTextV2, FUNSD, TextOCR, NAF, SROIE;
79+
3. 新增了4个文本识别以及2个辅助运行过程的数据变换。
80+
4. 数据变换 `FixInvalidPolygon` 现在可以处理更多种类的非法多边形,因此各模型如今也可以顺畅地在 TotalText 数据集上完成训练流程。我们同时也发布了 DBNet 和 FCENet 在 TotalText 上的预训练模型。
81+
82+
阅读[更新日志](https://mmocr.readthedocs.io/zh_CN/dev-1.x/notes/changelog.html)以获取更多信息。
83+
84+
## MMOCR 1.0 更新汇总
7485

7586
1. 架构升级:MMOCR 1.x 是基于 [MMEngine](https://github.com/open-mmlab/mmengine),提供了一个通用的、强大的执行器,允许更灵活的定制,提供了统一的训练和测试入口。
7687

@@ -88,8 +99,6 @@ MMOCR 的模块化设计使用户可以定义自己的优化器,数据预处
8899

89100
8. 更多新模型:MMOCR 1.0 支持了更多模型和模型种类。
90101

91-
阅读[更新日志](https://mmocr.readthedocs.io/zh_CN/dev-1.x/notes/changelog.html)以获取更多信息。
92-
93102
## 安装
94103

95104
MMOCR 依赖 [PyTorch](https://pytorch.org/), [MMEngine](https://github.com/open-mmlab/mmengine), [MMCV](https://github.com/open-mmlab/mmcv)[MMDetection](https://github.com/open-mmlab/mmdetection),以下是安装的简要步骤。

docs/en/get_started/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,5 +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 |
197+
| 1.0.0rc\[4-5\] | 0.1.0 \<= mmengine \< 1.0.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |
198198
| 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

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,68 @@
11
# Changelog of v1.x
22

3+
## v1.0.0rc5 (06/01/2023)
4+
5+
### Highlights
6+
7+
1. Two models, Aster and SVTR, are added to our model zoo. The full implementation of ABCNet is also available now.
8+
2. Dataset Preparer supports 5 more datasets: CocoTextV2, FUNSD, TextOCR, NAF, SROIE.
9+
3. We have 4 more text recognition transforms, and two helper transforms. See https://github.com/open-mmlab/mmocr/pull/1646 https://github.com/open-mmlab/mmocr/pull/1632 https://github.com/open-mmlab/mmocr/pull/1645 for details.
10+
4. The transform, `FixInvalidPolygon`, is getting smarter at dealing with invalid polygons, and now capable of handling more weird annotations. As a result, a complete training cycle on TotalText dataset can be performed bug-free. The weights of DBNet and FCENet pretrained on TotalText are also released.
11+
12+
### New Features & Enhancements
13+
14+
- Update ic15 det config according to DataPrepare by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1617
15+
- Refactor icdardataset metainfo to lowercase. by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1620
16+
- Add ASTER Encoder by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1239
17+
- Add ASTER decoder by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1625
18+
- Add ASTER config by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1238
19+
- Update ASTER config by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1629
20+
- Support browse_dataset.py to visualize original dataset by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1503
21+
- Add CocoTextv2 to dataset preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1514
22+
- Add Funsd to dataset preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1550
23+
- Add TextOCR to Dataset Preparer by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1543
24+
- Refine example projects and readme by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1628
25+
- Enhance FixInvalidPolygon, add RemoveIgnored transform by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1632
26+
- ConditionApply by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1646
27+
- Add NAF to dataset preparer by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1609
28+
- Add SROIE to dataset preparer by @FerryHuang in https://github.com/open-mmlab/mmocr/pull/1639
29+
- Add svtr decoder by @willpat1213 in https://github.com/open-mmlab/mmocr/pull/1448
30+
- Add missing unit tests by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1651
31+
- Add svtr encoder by @willpat1213 in https://github.com/open-mmlab/mmocr/pull/1483
32+
- ABCNet train by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1610
33+
- Totaltext cfgs for DB and FCE by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1633
34+
- Add Aliases to models by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1611
35+
- SVTR transforms by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1645
36+
- Add SVTR framework and configs by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1621
37+
- Issue Template by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1663
38+
39+
### Docs
40+
41+
- Add Chinese translation for browse_dataset.py by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1647
42+
- updata abcnet doc by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1658
43+
- update the dbnetpp\`s readme file by @zhuyue66 in https://github.com/open-mmlab/mmocr/pull/1626
44+
45+
### Bug Fixes
46+
47+
- nn.SmoothL1Loss beta can not be zero in PyTorch 1.13 version by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1616
48+
- ctc loss bug if target is empty by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1618
49+
- Add torch 1.13 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1619
50+
- Remove outdated tutorial link by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1627
51+
- Dev 1.x some doc mistakes by @KevinNuNu in https://github.com/open-mmlab/mmocr/pull/1630
52+
- Support custom font to visualize some languages (e.g. Korean) by @ProtossDragoon in https://github.com/open-mmlab/mmocr/pull/1567
53+
- db_module_loss,negative number encountered in sqrt by @KevinNuNu in https://github.com/open-mmlab/mmocr/pull/1640
54+
- Use int instead of np.int by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1636
55+
- Remove support for py3.6 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1660
56+
57+
### New Contributors
58+
59+
- @zhuyue66 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1626
60+
- @KevinNuNu made their first contribution in https://github.com/open-mmlab/mmocr/pull/1630
61+
- @FerryHuang made their first contribution in https://github.com/open-mmlab/mmocr/pull/1639
62+
- @willpat1213 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1448
63+
64+
**Full Changelog**: https://github.com/open-mmlab/mmocr/compare/v1.0.0rc4...v1.0.0rc5
65+
366
## v1.0.0rc4 (06/12/2022)
467

568
### Highlights

docs/zh_cn/get_started/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,5 +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 |
198+
| 1.0.0rc\[4-5\] | 0.1.0 \<= mmengine \< 1.0.0 | 2.0.0rc1 \<= mmcv \< 2.1.0 | 3.0.0rc0 \<= mmdet \< 3.1.0 |
199199
| 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

Lines changed: 1 addition & 1 deletion
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.0rc4'
3+
__version__ = '1.0.0rc5'
44
short_version = __version__

0 commit comments

Comments
 (0)