You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-10Lines changed: 15 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -71,30 +71,35 @@ The main branch works with **PyTorch 1.6+**.
71
71
72
72
## What's New
73
73
74
-
While the stable version (0.6.2) and the preview version (1.0.0) are being maintained concurrently now, the former version will be deprecated by the end of 2022. Therefore, we recommend users upgrade to [MMOCR 1.0](https://github.com/open-mmlab/mmocr/tree/1.x) to fruitful new features and better performance brought by the new architecture. Check out our [maintenance plan](https://mmocr.readthedocs.io/en/dev-1.x/migration/overview.html) for how we will maintain them in the future.
74
+
While the stable version (0.6.3) and the preview version (1.0.0) are being maintained concurrently now, the former version will be deprecated by the end of 2022. Therefore, we recommend users upgrade to [MMOCR 1.0](https://github.com/open-mmlab/mmocr/tree/1.x) to fruitful new features and better performance brought by the new architecture. Check out our [maintenance plan](https://mmocr.readthedocs.io/en/dev-1.x/migration/overview.html) for how we will maintain them in the future.
75
75
76
76
### 💎 Stable version
77
77
78
-
v0.6.2 was released in 2022-10-14.
78
+
v0.6.3 was released in 2022-11-03.
79
79
80
-
1. It's now possible to train/test models through Python Interface.
81
-
2. ResizeOCR now fully supports all the parameters in mmcv.impad.
80
+
This release enhances the inference script and fixes a bug that might cause failure on TorchServe.
82
81
83
82
Read [Changelog](https://mmocr.readthedocs.io/en/latest/changelog.html) for more details!
84
83
85
84
### 🌟 Preview of 1.x version
86
85
87
-
A brand new version of **MMOCR v1.0.0rc2** was released in 2022-10-14:
86
+
A brand new version of **MMOCR v1.0.0rc3** was released in 2022-11-03:
88
87
89
-
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.
88
+
1.We release several pretrained models using [oCLIP-ResNet](https://github.com/open-mmlab/mmocr/blob/1.x/configs/backbone/oclip/README.md) as the backbone, which is a ResNet variant trained with [oCLIP](https://www.ecva.net/papers/eccv_2022/papers_ECCV/papers/136880282.pdf)and can significantly boost the performance of text detection models.
90
89
91
-
2.**Unified interfaces**. As a part of the OpenMMLab 2.0 projects, MMOCR 1.x unifies and refactors the interfaces and internal logics of train, testing, datasets, models, evaluation, and visualization. All the OpenMMLab 2.0 projects share the same design in those interfaces and logics to allow the emergence of multi-task/modality algorithms.
90
+
2.Preparing datasets is troublesome and tedious, especially in OCR domain where multiple datasets are usually required. In order to free our users from laborious work, we designed a [Dataset Preparer](https://mmocr.readthedocs.io/en/dev-1.x/user_guides/data_prepare/dataset_preparer.html) to help you get a bunch of datasets ready for use, with only **one line of command**! Dataset Preparer is also crafted to consist of a series of reusable modules, each responsible for handling one of the standardized phases throughout the preparation process, shortening the development cycle on supporting new datasets.
92
91
93
-
3.**Cross project calling**. Benefiting from the unified design, you can use the models implemented in other OpenMMLab projects, such as MMDet. We provide an example of how to use MMDetection's Mask R-CNN through `MMDetWrapper`. Check our documents for more details. More wrappers will be released in the future.
92
+
3.**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.
94
93
95
-
4.**Stronger visualization**. We provide a series of useful tools which are mostly based on brand-new visualizers. As a result, it is more convenient for the users to explore the models and datasets now.
94
+
4.**Unified interfaces**. As a part of the OpenMMLab 2.0 projects, MMOCR 1.x unifies and refactors the interfaces and internal logics of train, testing, datasets, models, evaluation, and visualization. All the OpenMMLab 2.0 projects share the same design in those interfaces and logics to allow the emergence of multi-task/modality algorithms.
96
95
97
-
5.**More documentation and tutorials**. We add a bunch of documentation and tutorials to help users get started more smoothly. Read it [here](https://mmocr.readthedocs.io/en/dev-1.x/).
96
+
5.**Cross project calling**. Benefiting from the unified design, you can use the models implemented in other OpenMMLab projects, such as MMDet. We provide an example of how to use MMDetection's Mask R-CNN through `MMDetWrapper`. Check our documents for more details. More wrappers will be released in the future.
97
+
98
+
6.**Stronger visualization**. We provide a series of useful tools which are mostly based on brand-new visualizers. As a result, it is more convenient for the users to explore the models and datasets now.
99
+
100
+
7.**More documentation and tutorials**. We add a bunch of documentation and tutorials to help users get started more smoothly. Read it [here](https://mmocr.readthedocs.io/en/dev-1.x/).
101
+
102
+
8.**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).
98
103
99
104
Find more new features in [1.x branch](https://github.com/open-mmlab/mmocr/tree/1.x). Issues and PRs are welcome!
Copy file name to clipboardExpand all lines: docs/en/changelog.md
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,39 @@
1
1
# Changelog
2
2
3
+
## 0.6.3 (03/11/2022)
4
+
5
+
### Highlights
6
+
7
+
This release enhances the inference script and fixes a bug that might cause failure on TorchServe.
8
+
9
+
Besides, a new backbone, oCLIP-ResNet, and a dataset preparation tool, Dataset Preparer, have been released in
10
+
MMOCR 1.0.0rc3 ([1.x branch](https://github.com/open-mmlab/mmocr/tree/1.x)). Check out the [changelog](https://mmocr.readthedocs.io/en/dev-1.x/notes/changelog.html) for more information about the features, and [maintenance plan](https://mmocr.readthedocs.io/en/dev-1.x/migration/overview.html) for how we will maintain MMOCR in the future.
11
+
12
+
### New Features & Enhancements
13
+
14
+
- Convert numpy.float32 type to python built-in float type by @JunYao1020 in https://github.com/open-mmlab/mmocr/pull/1462
15
+
- When '.' char not in output string, output is also considered to be a… by @JunYao1020 in https://github.com/open-mmlab/mmocr/pull/1457
16
+
- Refactor issue template by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1449
17
+
- issue template by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1489
18
+
- Update maintainers by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1504
19
+
- Support MMCV \< 1.8.0 by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1508
20
+
21
+
### Bug Fixes
22
+
23
+
- fix ci by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1491
24
+
-\[CI\] Fix CI by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1463
25
+
26
+
### Docs
27
+
28
+
-\[DOCs\] Add MMYOLO in Readme. by @ysh329 in https://github.com/open-mmlab/mmocr/pull/1475
29
+
-\[Docs\] Update contributing.md by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1490
30
+
31
+
### New Contributors
32
+
33
+
-@ysh329 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1475
0 commit comments