image-moderator-v0 / code /configs /dataset /coco_detection.yml
TomLEE2026's picture
Upload 200 files
0bfcee2 verified
Raw
History Blame Contribute Delete
826 Bytes
task: detection
evaluator:
type: CocoEvaluator
iou_types: ['bbox', ]
num_classes: 80
remap_mscoco_category: True
train_dataloader:
type: DataLoader
dataset:
type: CocoDetection
img_folder: /datassd/COCO/train2017/
ann_file: /datassd/COCO/annotations/instances_train2017.json
return_masks: False
transforms:
type: Compose
ops: ~
shuffle: True
num_workers: 4
drop_last: True
collate_fn:
type: BatchImageCollateFunction
val_dataloader:
type: DataLoader
dataset:
type: CocoDetection
img_folder: /datassd/COCO/val2017/
ann_file: /datassd/COCO/annotations/instances_val2017.json
return_masks: False
transforms:
type: Compose
ops: ~
shuffle: False
num_workers: 4
drop_last: False
collate_fn:
type: BatchImageCollateFunction