mirror of https://github.com/open-mmlab/mmocr.git
16 lines
424 B
Python
16 lines
424 B
Python
icdar2015_textspotting_data_root = 'data/icdar2015'
|
|
|
|
icdar2015_textspotting_train = dict(
|
|
type='OCRDataset',
|
|
data_root=icdar2015_textspotting_data_root,
|
|
ann_file='textspotting_train.json',
|
|
pipeline=None)
|
|
|
|
icdar2015_textspotting_test = dict(
|
|
type='OCRDataset',
|
|
data_root=icdar2015_textspotting_data_root,
|
|
ann_file='textspotting_test.json',
|
|
test_mode=True,
|
|
# indices=50,
|
|
pipeline=None)
|