|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 0.6.2 (14/10/2022) |
| 4 | + |
| 5 | +### Highlights |
| 6 | + |
| 7 | +It's now possible to train/test models through Python Interface. For example, you can train a model under mmocr/ directory in this way: |
| 8 | + |
| 9 | +```python |
| 10 | +# an example of how to use such modifications is shown as the following: |
| 11 | +from mmocr.tools.train import TrainArg, parse_args, run_train_cmd |
| 12 | +args = TrainArg(config='/path/to/config.py') |
| 13 | +args.add_arg('--work-dir', '/path/to/dir') |
| 14 | +args = parse_args(args.arg_list) |
| 15 | +run_train_cmd(args) |
| 16 | +``` |
| 17 | + |
| 18 | +See PR [#1138](https://github.com/open-mmlab/mmocr/pull/1138) for more details. |
| 19 | + |
| 20 | +Besides, release candidates for MMOCR 1.0 with tons of new features are available at [1.x branch](https://github.com/open-mmlab/mmocr/tree/1.x) now! 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. |
| 21 | + |
| 22 | +### New Features |
| 23 | + |
| 24 | +- Adding test & train API to be used directly in code by @wybryan in https://github.com/open-mmlab/mmocr/pull/1138 |
| 25 | +- Let ResizeOCR full support mmcv.impad's pad_val parameters by @hsiehpinghan in https://github.com/open-mmlab/mmocr/pull/1437 |
| 26 | + |
| 27 | +### Bug Fixes |
| 28 | + |
| 29 | +- Fix ABINet config by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1256 |
| 30 | +- Fix Recognition Score Normalization Issue by @xinke-wang in https://github.com/open-mmlab/mmocr/pull/1333 |
| 31 | +- Remove max_seq_len inconsistency by @antoniolanza1996 in https://github.com/open-mmlab/mmocr/pull/1433 |
| 32 | +- box points ordering by @yjmm10 in https://github.com/open-mmlab/mmocr/pull/1205 |
| 33 | +- Correct spelling by misspelling 'preperties' to 'properties' by @JunYao1020 in https://github.com/open-mmlab/mmocr/pull/1446 |
| 34 | + |
| 35 | +### Docs |
| 36 | + |
| 37 | +- Demo, experiments and live inference API on Tiyaro by @Venkat2811 in https://github.com/open-mmlab/mmocr/pull/1272 |
| 38 | +- Update 1.x info by @Harold-lkk in https://github.com/open-mmlab/mmocr/pull/1369 |
| 39 | +- Add global notes to the docs and the version switcher menu by @gaotongxiao in https://github.com/open-mmlab/mmocr/pull/1406 |
| 40 | +- Logger Hook Config Updated to Add WandB by @Nourollah in https://github.com/open-mmlab/mmocr/pull/1345 |
| 41 | + |
| 42 | +### New Contributors |
| 43 | + |
| 44 | +- @Venkat2811 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1272 |
| 45 | +- @wybryan made their first contribution in https://github.com/open-mmlab/mmocr/pull/1139 |
| 46 | +- @hsiehpinghan made their first contribution in https://github.com/open-mmlab/mmocr/pull/1437 |
| 47 | +- @yjmm10 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1205 |
| 48 | +- @JunYao1020 made their first contribution in https://github.com/open-mmlab/mmocr/pull/1446 |
| 49 | +- @Nourollah made their first contribution in https://github.com/open-mmlab/mmocr/pull/1345 |
| 50 | + |
| 51 | +**Full Changelog**: https://github.com/open-mmlab/mmocr/compare/v0.6.1...v0.6.2 |
| 52 | + |
3 | 53 | ## 0.6.1 (04/08/2022) |
4 | 54 |
|
5 | 55 | ### Highlights |
|
0 commit comments