mirror of https://github.com/open-mmlab/mmocr.git
update changelog for v0.2.0 (#208)
* update changelog for v0.2.0 * update changelog * updatepull/218/head
parent
8c60e4b4d1
commit
62c452359f
|
@ -1,13 +1,45 @@
|
|||
# Changelog
|
||||
## v0.2.0 (16/5/2021)
|
||||
|
||||
## v0.2.0 (18/5/2021)
|
||||
|
||||
**Highlights**
|
||||
|
||||
- MMOCR is compiling-free via moving textdet postprocessing and ops to mmcv 1.3.4 or later.
|
||||
- Add a new OCR downstream task-NER.
|
||||
- Add two new text detection methods: DRRG and FCENet.
|
||||
- Add a new text recognition method: TPS-CRNN.
|
||||
- Add an end-to-end demo.
|
||||
1. Add the NER approach Bert-softmax (NAACL'2019)
|
||||
2. Add the text detection method DRRG (CVPR'2020)
|
||||
3. Add the text detection method FCENet (CVPR'2021)
|
||||
4. Increase the ease of use via adding text detection and recognition end-to-end demo, and colab online demo.
|
||||
5. Simplify the installation.
|
||||
|
||||
**New Features**
|
||||
|
||||
- Add Bert-softmax for Ner task [#148](https://github.com/open-mmlab/mmocr/pull/148)
|
||||
- Add DRRG [#189](https://github.com/open-mmlab/mmocr/pull/189)
|
||||
- Add FCENet [#133](https://github.com/open-mmlab/mmocr/pull/133)
|
||||
- Add end-to-end demo [#105](https://github.com/open-mmlab/mmocr/pull/105)
|
||||
- Support batch inference [#86](https://github.com/open-mmlab/mmocr/pull/86) [#87](https://github.com/open-mmlab/mmocr/pull/87) [#178](https://github.com/open-mmlab/mmocr/pull/178)
|
||||
- Add TPS preprocessor for text recognition [#117](https://github.com/open-mmlab/mmocr/pull/117) [#135](https://github.com/open-mmlab/mmocr/pull/135)
|
||||
- Add demo documentation [#151](https://github.com/open-mmlab/mmocr/pull/151) [#166](https://github.com/open-mmlab/mmocr/pull/166) [#168](https://github.com/open-mmlab/mmocr/pull/168) [#170](https://github.com/open-mmlab/mmocr/pull/170) [#171](https://github.com/open-mmlab/mmocr/pull/171)
|
||||
- Add checkpoint for Chinese recognition [#156](https://github.com/open-mmlab/mmocr/pull/156)
|
||||
- Add metafile [#175](https://github.com/open-mmlab/mmocr/pull/175) [#176](https://github.com/open-mmlab/mmocr/pull/176) [#177](https://github.com/open-mmlab/mmocr/pull/177) [#182](https://github.com/open-mmlab/mmocr/pull/182) [#183](https://github.com/open-mmlab/mmocr/pull/183)
|
||||
- Add support for numpy array inference [#74](https://github.com/open-mmlab/mmocr/pull/74)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- Fix the duplicated point bug due to transform for textsnake [#130](https://github.com/open-mmlab/mmocr/pull/130)
|
||||
- Fix CTC loss NaN [#159](https://github.com/open-mmlab/mmocr/pull/159)
|
||||
- Fix error raised if result is empty in demo [#144](https://github.com/open-mmlab/mmocr/pull/141)
|
||||
- Fix results missing if one image has a large number of boxes [#98](https://github.com/open-mmlab/mmocr/pull/98)
|
||||
- Fix package missing in dockerfile [#109](https://github.com/open-mmlab/mmocr/pull/109)
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Simplify installation procedure via removing compiling [#188](https://github.com/open-mmlab/mmocr/pull/188)
|
||||
- Speed up panet post processing so that it can detect dense texts [#188](https://github.com/open-mmlab/mmocr/pull/188)
|
||||
- Add zh-CN README [#70](https://github.com/open-mmlab/mmocr/pull/70) [#95](https://github.com/open-mmlab/mmocr/pull/95)
|
||||
- Support windows [#89](https://github.com/open-mmlab/mmocr/pull/89)
|
||||
- Add Colab [#147](https://github.com/open-mmlab/mmocr/pull/147) [#199](https://github.com/open-mmlab/mmocr/pull/199)
|
||||
- Add 1-step installation using conda environment [#193](https://github.com/open-mmlab/mmocr/pull/193) [#194](https://github.com/open-mmlab/mmocr/pull/194) [#195](https://github.com/open-mmlab/mmocr/pull/195)
|
||||
|
||||
|
||||
## v0.1.0 (7/4/2021)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) Open-MMLab. All rights reserved.
|
||||
|
||||
__version__ = '0.1.0'
|
||||
__version__ = '0.2.0'
|
||||
short_version = __version__
|
||||
|
|
Loading…
Reference in New Issue