You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

lvis_v0.5_instance.py 786 B

2 years ago
123456789101112131415161718192021222324
  1. # dataset settings
  2. _base_ = 'coco_instance.py'
  3. dataset_type = 'LVISV05Dataset'
  4. data_root = 'data/lvis_v0.5/'
  5. data = dict(
  6. samples_per_gpu=2,
  7. workers_per_gpu=2,
  8. train=dict(
  9. _delete_=True,
  10. type='ClassBalancedDataset',
  11. oversample_thr=1e-3,
  12. dataset=dict(
  13. type=dataset_type,
  14. ann_file=data_root + 'annotations/lvis_v0.5_train.json',
  15. img_prefix=data_root + 'train2017/')),
  16. val=dict(
  17. type=dataset_type,
  18. ann_file=data_root + 'annotations/lvis_v0.5_val.json',
  19. img_prefix=data_root + 'val2017/'),
  20. test=dict(
  21. type=dataset_type,
  22. ann_file=data_root + 'annotations/lvis_v0.5_val.json',
  23. img_prefix=data_root + 'val2017/'))
  24. evaluation = dict(metric=['bbox', 'segm'])

No Description

Contributors (3)