12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # dataset settings
- dataset_type = 'LVISV05Dataset'
- data_root = 'data/lvis_v0.5/'
- # Example to use different file client
- # Method 1: simply set the data root and let the file I/O module
- # automatically infer from prefix (not support LMDB and Memcache yet)
- # data_root = 's3://openmmlab/datasets/detection/lvis_v0.5/'
- # Method 2: Use `backend_args`, `file_client_args` in versions before 3.0.0rc6
- # backend_args = dict(
- # backend='petrel',
- # path_mapping=dict({
- # './data/': 's3://openmmlab/datasets/detection/',
- # 'data/': 's3://openmmlab/datasets/detection/'
- # }))
- backend_args = None
- train_pipeline = [
- dict(type='LoadImageFromFile', backend_args=backend_args),
- dict(type='LoadAnnotations', with_bbox=True, with_mask=True),
- dict(
- type='RandomChoiceResize',
- scales=[(1333, 640), (1333, 672), (1333, 704), (1333, 736),
- (1333, 768), (1333, 800)],
- keep_ratio=True),
- dict(type='RandomFlip', prob=0.5),
- dict(type='PackDetInputs')
- ]
- test_pipeline = [
- dict(type='LoadImageFromFile', backend_args=backend_args),
- dict(type='Resize', scale=(1333, 800), keep_ratio=True),
- dict(type='LoadAnnotations', with_bbox=True, with_mask=True),
- dict(
- type='PackDetInputs',
- meta_keys=('img_id', 'img_path', 'ori_shape', 'img_shape',
- 'scale_factor'))
- ]
- train_dataloader = dict(
- batch_size=2,
- num_workers=2,
- persistent_workers=True,
- sampler=dict(type='DefaultSampler', shuffle=True),
- batch_sampler=dict(type='AspectRatioBatchSampler'),
- dataset=dict(
- type='ClassBalancedDataset',
- oversample_thr=1e-3,
- dataset=dict(
- type=dataset_type,
- data_root=data_root,
- ann_file='annotations/lvis_v0.5_train.json',
- data_prefix=dict(img='train2017/'),
- filter_cfg=dict(filter_empty_gt=True, min_size=32),
- pipeline=train_pipeline,
- backend_args=backend_args)))
- val_dataloader = dict(
- batch_size=1,
- num_workers=2,
- persistent_workers=True,
- drop_last=False,
- sampler=dict(type='DefaultSampler', shuffle=False),
- dataset=dict(
- type=dataset_type,
- data_root=data_root,
- ann_file='annotations/lvis_v0.5_val.json',
- data_prefix=dict(img='val2017/'),
- test_mode=True,
- pipeline=test_pipeline,
- backend_args=backend_args))
- test_dataloader = val_dataloader
- val_evaluator = dict(
- type='LVISMetric',
- ann_file=data_root + 'annotations/lvis_v0.5_val.json',
- metric=['bbox', 'segm'],
- backend_args=backend_args)
- test_evaluator = val_evaluator
|