- Engine build scripts (FP16/INT8) - Benchmark validation scripts - Result parsing and analysis tools - COCO dataset configuration
21 lines
671 B
YAML
21 lines
671 B
YAML
path: C:/Users/16337/PycharmProjects/Security/datasets/coco # dataset root dir
|
|
train: images/train2017 # train images (relative to 'path')
|
|
val: images/val2017 # val images (relative to 'path')
|
|
test: # test images (optional)
|
|
|
|
# Classes for person and vehicle detection only
|
|
names:
|
|
0: person
|
|
1: bicycle
|
|
2: car
|
|
3: motorcycle
|
|
4: bus
|
|
5: truck
|
|
6: train
|
|
|
|
# Download/Extract instructions
|
|
download: |
|
|
wget http://images.cocodataset.org/zips/train2017.zip -O ../train2017.zip
|
|
wget http://images.cocodataset.org/zips/val2017.zip -O ../val2017.zip
|
|
wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip -O ../annotations_trainval2017.zip
|