mirror of https://github.com/open-mmlab/mmocr.git
18 lines
466 B
Python
18 lines
466 B
Python
ctw_det_data_root = 'data/det/ctw1500'
|
|
|
|
ctw_det_train = dict(
|
|
type='OCRDataset',
|
|
data_root=ctw_det_data_root,
|
|
ann_file='instances_training.json',
|
|
data_prefix=dict(img_path='imgs/'),
|
|
filter_cfg=dict(filter_empty_gt=True, min_size=32),
|
|
pipeline=None)
|
|
|
|
ctw_det_test = dict(
|
|
type='OCRDataset',
|
|
data_root=ctw_det_data_root,
|
|
ann_file='instances_test.json',
|
|
data_prefix=dict(img_path='imgs/'),
|
|
test_mode=True,
|
|
pipeline=None)
|