2021-10-09 14:10:42 +08:00
## MMOCR Support
2021-11-09 11:43:38 +08:00
MMOCR is an open-source toolbox based on PyTorch and mmdetection for text detection, text recognition, and the corresponding downstream tasks including key information extraction. It is a part of the [OpenMMLab ](https://openmmlab.com/ ) project.
### MMOCR installation tutorial
2021-12-23 17:35:59 +08:00
Please refer to [install.md ](https://mmocr.readthedocs.io/en/latest/install.html ) for installation.
2021-11-09 11:43:38 +08:00
### List of MMOCR models supported by MMDeploy
2021-12-24 17:20:06 +08:00
| model | task | OnnxRuntime | TensorRT | NCNN | PPLNN | OpenVINO | model config file(example) |
| :---- | :--------------- | :---------: | :------: | :---: | :---: | :------: | :------------------------------------------------------------------------ |
| DBNet | text-detection | Y | Y | Y | Y | Y | $PATH_TO_MMOCR/configs/textdet/dbnet/dbnet_r18_fpnc_1200e_icdar2015.py |
| CRNN | text-recognition | Y | Y | Y | Y | N | $PATH_TO_MMOCR/configs/textrecog/crnn/crnn_academic_dataset.py |
| SAR | text-recognition | Y | N | N | N | N | $PATH_TO_MMOCR/configs/textrecog/sar/sar_r31_parallel_decoder_academic.py |
2021-12-08 10:31:57 +08:00
2021-11-09 11:43:38 +08:00
### Reminder
2021-12-08 10:31:57 +08:00
Note that ncnn, pplnn, and OpenVINO only support the configs of DBNet18 for DBNet.
2021-11-09 11:43:38 +08:00
### FAQs
None