mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* add deploy runner * fix text_det wrapper * fix recog * save * add crnn support * update with_padding * add short scale aspect jitter * update regression test * torch2ts * add test data * resolve comments
14 lines
382 B
Python
14 lines
382 B
Python
_base_ = ['./text-detection_dynamic.py', '../../_base_/backends/sdk.py']
|
|
|
|
codebase_config = dict(model_type='sdk')
|
|
|
|
backend_config = dict(pipeline=[
|
|
dict(type='LoadImageFromFile'),
|
|
dict(
|
|
type='LoadOCRAnnotations',
|
|
with_polygon=True,
|
|
with_bbox=True,
|
|
with_label=True),
|
|
dict(type='PackTextDetInputs', meta_keys=['img_path', 'ori_shape'])
|
|
])
|