25 lines
1.3 KiB
YAML
25 lines
1.3 KiB
YAML
grid_dir: ../generate_npy/
|
|
grid20_path: ../generate_npy/20_640x640.npy
|
|
grid40_path: ../generate_npy/40_640x640.npy
|
|
grid80_path: ../generate_npy/80_640x640.npy
|
|
|
|
yolov5_dir: ./
|
|
path: ./best.pt
|
|
yaml_path: ./models/yolov5s.yaml
|
|
pt_path: ./yolov5s.pt # pytorch 1.4
|
|
onnx_export_file: ./yolov5s.onnx
|
|
|
|
input_w: 640
|
|
input_h: 640
|
|
# number of classes
|
|
nc: 80
|
|
# class names
|
|
names: ['person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus', 'train', 'truck', 'boat', 'traffic light',
|
|
'fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird', 'cat', 'dog', 'horse', 'sheep', 'cow',
|
|
'elephant', 'bear', 'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie', 'suitcase', 'frisbee',
|
|
'skis', 'snowboard', 'sports ball', 'kite', 'baseball bat', 'baseball glove', 'skateboard', 'surfboard',
|
|
'tennis racket', 'bottle', 'wine glass', 'cup', 'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple',
|
|
'sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza', 'donut', 'cake', 'chair', 'couch',
|
|
'potted plant', 'bed', 'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard', 'cell phone',
|
|
'microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors', 'teddy bear',
|
|
'hair drier', 'toothbrush'] |