10 lines
261 B
Python
10 lines
261 B
Python
|
_base_ = './pascal_voc12.py'
|
||
|
# dataset settings
|
||
|
data = dict(
|
||
|
train=dict(
|
||
|
ann_dir=['SegmentationClass', 'SegmentationClassAug'],
|
||
|
split=[
|
||
|
'ImageSets/Segmentation/train.txt',
|
||
|
'ImageSets/Segmentation/aug.txt'
|
||
|
]))
|