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_v1_instance.py 736 B

2 years ago
123456789101112131415161718192021222324
  1. # dataset settings
  2. _base_ = 'coco_instance.py'
  3. dataset_type = 'LVISV1Dataset'
  4. data_root = 'data/lvis_v1/'
  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_v1_train.json',
  15. img_prefix=data_root)),
  16. val=dict(
  17. type=dataset_type,
  18. ann_file=data_root + 'annotations/lvis_v1_val.json',
  19. img_prefix=data_root),
  20. test=dict(
  21. type=dataset_type,
  22. ann_file=data_root + 'annotations/lvis_v1_val.json',
  23. img_prefix=data_root))
  24. evaluation = dict(metric=['bbox', 'segm'])

No Description

Contributors (2)