segmentation_sdk_dynamic.py 307 Bytes
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
_base_ = ['./segmentation_dynamic.py', '../_base_/backends/sdk.py']

codebase_config = dict(model_type='sdk')

backend_config = dict(pipeline=[
    dict(type='LoadImageFromFile'),
    dict(type='LoadAnnotations'),
    dict(
        type='PackSegInputs', meta_keys=['img_path', 'ori_shape', 'img_shape'])
])