Skip to content

MMOCR Release v0.6.2

Compare
Choose a tag to compare
@gaotongxiao gaotongxiao released this 14 Oct 06:21
· 585 commits to main since this release
85f3473

Highlights

It's now possible to train/test models through Python Interface. For example, you can train a model under mmocr/ directory in this way:

# an example of how to use such modifications is shown as the following:
from mmocr.tools.train import TrainArg, parse_args, run_train_cmd
args = TrainArg(config='/path/to/config.py')
args.add_arg('--work-dir', '/path/to/dir')
args = parse_args(args.arg_list)
run_train_cmd(args)

See PR #1138 for more details.

Besides, release candidates for MMOCR 1.0 with tons of new features are available at 1.x branch now! Check out the changelog for more information about the features, and maintenance plan for how we will maintain MMOCR in the future.

New Features

  • Adding test & train API to be used directly in code by @wybryan in #1138
  • Let ResizeOCR full support mmcv.impad's pad_val parameters by @hsiehpinghan in #1437

Bug Fixes

Docs

New Contributors

Full Changelog: v0.6.1...v0.6.2