-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
23 lines (18 loc) · 1.26 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
defaults: &defaults
input_shape: [ 640, 640, 3 ]
dtype: float32
class_names: [ "person", "bicycle", "car", "motorbike", "aeroplane", "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", "sofa", "pottedplant", "bed", "diningtable", "toilet", "tvmonitor", "laptop", "mouse", "remote", "keyboard", "cell phone", "microwave", "oven", "toaster", "sink", "refrigerator", "book", "clock", "vase", "scissors", "teddy bear", "hair drier", "toothbrush" ]
num_classes: 80
models:
yolov8:
<<: *defaults
model_path: "seg_models/yolov8n-seg.onnx"
yolov9:
<<: *defaults
model_path: "seg_models/yolov9c-seg.onnx"
yolov5:
<<: *defaults
model_path: "seg_models/yolov5s-seg.onnx"
obfuscation_types: [ "pixelation", "blurring", "masking", "none" ]
sigma: 50
square: 10