Skip to content

Commit daa676d

Browse files
authored
Bump version to 1.0.0rc1 (#1432)
* Bump version to 1.0.0rc1 * update changelog * update changelog * update changelog * update changelog * update highlights
1 parent e7e4677 commit daa676d

File tree

4 files changed

+62
-9
lines changed

4 files changed

+62
-9
lines changed

docs/en/get_started/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ docker run --gpus all --shm-size=8g -it -v {DATA_DIR}:/mmocr/data mmocr
191191

192192
MMOCR has different version requirements on MMCV and MMDetection at each release to guarantee the implementation correctness. Please refer to the table below and ensure the package versions fit the requirement.
193193

194-
| MMOCR | MMCV | MMDetection |
195-
| -------- | ----------------- | ------------------ |
196-
| dev-1.x | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |
197-
| 1.0.0rc0 | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |
194+
| MMOCR | MMCV | MMDetection |
195+
| ------------- | ----------------- | ------------------ |
196+
| dev-1.x | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |
197+
| 1.0.0rc0, rc1 | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |

docs/en/notes/changelog.md

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

3+
## v1.0.0rc1 (9/10/2022)
4+
5+
### Highlights
6+
7+
This release fixes a severe bug leading to inaccurate metric report in multi-GPU training.
8+
We release the weights for all the text recognition models in MMOCR 1.0 architecture. The inference shorthand for them are also added back to `ocr.py`. Besides, more documentation chapters are available now.
9+
10+
### New Features & Enhancements
11+
12+
- Simplify the Mask R-CNN config by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1391
13+
- auto scale lr by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1326
14+
- Update paths to pretrain weights by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1416
15+
- Streamline duplicated split_result in pan_postprocessor by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1418
16+
- Update model links in ocr.py and inference.md by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1431
17+
- Update rec configs by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1417
18+
- Visualizer refine by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1411
19+
- Support get flops and parameters in dev-1.x by @vansin in https://github.com/open-mmlab/mmocr/pull/1414
20+
21+
### Docs
22+
23+
- intersphinx and api by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1367
24+
- Fix quickrun by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1374
25+
- Fix some docs issues by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1385
26+
- Add Documents for DataElements by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1381
27+
- config english by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1372
28+
- Metrics by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1399
29+
- Add version switcher to menu by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1407
30+
- Data Transforms by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1392
31+
- Fix inference docs by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1415
32+
- Fix some docs by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1410
33+
- Add maintenance plan to migration guide by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1413
34+
- Update Recog Models by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1402
35+
36+
### Bug Fixes
37+
38+
- clear metric.results only done in main process by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1379
39+
- Fix a bug in MMDetWrapper by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1393
40+
- Fix browse_dataset.py by @Mountchicken in https://github.com/open-mmlab/mmocr/pull/1398
41+
- ImgAugWrapper: Do not cilp polygons if not applicable by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1231
42+
- Fix CI by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1365
43+
- Fix merge stage test by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1370
44+
- Del CI support for torch 1.5.1 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1371
45+
- Test windows cu111 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1373
46+
- Fix windows CI by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1387
47+
- Upgrade pre commit hooks by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1429
48+
- Skip invalid augmented polygons in ImgAugWrapper by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1434
49+
50+
## New Contributors
51+
52+
- @vansin made their first contribution in https://github.com/open-mmlab/mmocr/pull/1414
53+
54+
**Full Changelog**: https://github.com/open-mmlab/mmocr/compare/v1.0.0rc0...v1.0.0rc1
55+
356
## v1.0.0rc0 (1/9/2022)
457

558
We are excited to announce the release of MMOCR 1.0.0rc0.

docs/zh_cn/get_started/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ docker run --gpus all --shm-size=8g -it -v {实际数据目录}:/mmocr/data mmoc
192192

193193
为了确保代码实现的正确性,MMOCR 每个版本都有可能改变对 MMCV 和 MMDetection 版本的依赖。请根据以下表格确保版本之间的相互匹配。
194194

195-
| MMOCR | MMCV | MMDetection |
196-
| -------- | ----------------- | ------------------ |
197-
| dev-1.x | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |
198-
| 1.0.0rc0 | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |
195+
| MMOCR | MMCV | MMDetection |
196+
| ------------- | ----------------- | ------------------ |
197+
| dev-1.x | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |
198+
| 1.0.0rc0, rc1 | 2.0.0rc1 \<= mmcv | 3.0.0rc0 \<= mmdet |

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.0rc0'
3+
__version__ = '1.0.0rc1'
44
short_version = __version__

0 commit comments

Comments
 (0)