I am using TorchServe to potentially serve a model from MMOCR (https://github.com/open-mmlab/mmocr), and I have several questions: I tried to do inference on hundreds of images together using batch mode by using & to concatenate curl commands together, such as suggested hereMulti request ...
I just found mim test mmocr xxxxxxx --work-dir #1698 Open QRICKDD opened this issue Jan 31, 2023· 3 comments Open [Docs] How to run ABCNet on a custom text image? I just found mim test mmocr xxxxxxx --work-dir #1698 QRICKDD opened this issue Jan 31, 2023· 3 comments ...
Augmentations are one kind of transform in MMOCR. You can add your augmentation class to mmocr/datasets/pipelines/ocr_transforms.py. Make sure you have done the following things: Use the @PIPELINES.register_module() wrapper for your transform; Implement your augmentation operations in def __call...