Spaces:
Runtime error
Runtime error
| # dataset settings | |
| dataset_type = 'PascalContextDataset' | |
| data_root = 'data/VOCdevkit/VOC2010/' | |
| img_scale = (520, 520) | |
| crop_size = (480, 480) | |
| train_pipeline = [ | |
| dict(type='LoadImageFromFile'), | |
| dict(type='LoadAnnotations'), | |
| dict( | |
| type='RandomResize', | |
| scale=img_scale, | |
| ratio_range=(0.5, 2.0), | |
| keep_ratio=True), | |
| dict(type='RandomCrop', crop_size=crop_size, cat_max_ratio=0.75), | |
| dict(type='RandomFlip', prob=0.5), | |
| dict(type='PhotoMetricDistortion'), | |
| dict(type='PackSegInputs') | |
| ] | |
| test_pipeline = [ | |
| dict(type='LoadImageFromFile'), | |
| dict(type='Resize', scale=img_scale, keep_ratio=True), | |
| # add loading annotation after ``Resize`` because ground truth | |
| # does not need to do resize data transform | |
| dict(type='LoadAnnotations'), | |
| dict(type='PackSegInputs') | |
| ] | |
| train_dataloader = dict( | |
| batch_size=4, | |
| num_workers=4, | |
| persistent_workers=True, | |
| sampler=dict(type='InfiniteSampler', shuffle=True), | |
| dataset=dict( | |
| type=dataset_type, | |
| data_root=data_root, | |
| data_prefix=dict( | |
| img_path='JPEGImages', seg_map_path='SegmentationClassContext'), | |
| ann_file='ImageSets/SegmentationContext/train.txt', | |
| pipeline=train_pipeline)) | |
| val_dataloader = dict( | |
| batch_size=1, | |
| num_workers=4, | |
| persistent_workers=True, | |
| sampler=dict(type='DefaultSampler', shuffle=False), | |
| dataset=dict( | |
| type=dataset_type, | |
| data_root=data_root, | |
| data_prefix=dict( | |
| img_path='JPEGImages', seg_map_path='SegmentationClassContext'), | |
| ann_file='ImageSets/SegmentationContext/val.txt', | |
| pipeline=test_pipeline)) | |
| test_dataloader = val_dataloader | |
| val_evaluator = dict(type='IoUMetric', iou_metrics=['mIoU']) | |
| test_evaluator = val_evaluator | |