-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathtestenv.yaml
More file actions
29 lines (28 loc) · 1.34 KB
/
testenv.yaml
File metadata and controls
29 lines (28 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
testenv:
# dataset configuration
dataset:
# the url address of train dataset index; string type;
train_url: "./dataset/mot17/annotations/train_half.json"
# the url address of test dataset index; string type;
test_url: "./dataset/mot17/annotations/val_half.json"
# metrics configuration for test case's evaluation; list type;
metrics:
# metric name; string type;
- name: "recall"
# the url address of python file
url: "./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/testenv/tracking/recall.py"
- name: "precision"
# the url address of python file
url: "./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/testenv/tracking/precision.py"
- name: "f1_score"
# the url address of python file
url: "./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/testenv/tracking/f1_score.py"
- name: "mota"
# the url address of python file
url: "./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/testenv/tracking/mota.py"
- name: "motp"
# the url address of python file
url: "./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/testenv/tracking/motp.py"
- name: "idf1"
# the url address of python file
url: "./examples/MOT17/multiedge_inference_bench/pedestrian_tracking/testenv/tracking/idf1.py"