Gil-Simas commited on
Commit
8455f0e
·
1 Parent(s): cd8d22b
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -28,8 +28,8 @@ title: mot-metrics
28
  >>> sequence_list=["Sentry_2022_11_PROACT_CELADON_7.5M_MOB_2022_11_25_12_12_39"],
29
  >>> tracking_mode=True
30
  >>> )
31
- >>> module = evaluate.load("SEA-AI/mot-metrics")
32
- >>> res = module._calculate(b, max_iou=0.99)
33
  >>> print(res)
34
  {'Sentry_2022_11_PROACT_CELADON_7.5M_MOB_2022_11_25_12_12_39': {'volcanic-sweep-3_02_2023_N_LN1_ep288_TRACKER': {'idf1': 0.9543031226199543,
35
  'idp': 0.9804381846635368,
@@ -48,7 +48,10 @@ title: mot-metrics
48
  'motp': 0.5235835810268012,
49
  'num_transfer': 0,
50
  'num_ascend': 1,
51
- 'num_migrate': 0}}}
 
 
 
52
  ```
53
 
54
  ## Metric Settings
@@ -76,6 +79,7 @@ The output is a dictionary containing the following metrics:
76
  | num_fragmentations | Total number of switches from tracked to not tracked. |
77
  | mota | Multiple object tracker accuracy. |
78
  | motp | Multiple object tracker precision. |
 
79
 
80
  ## Citations
81
 
 
28
  >>> sequence_list=["Sentry_2022_11_PROACT_CELADON_7.5M_MOB_2022_11_25_12_12_39"],
29
  >>> tracking_mode=True
30
  >>> )
31
+ >>> module = evaluate.load("SEA-AI/user-friendly-metrics")
32
+ >>> res = module._calculate(b, max_iou=0.99, recognition_thresholds=[0.3, 0.5, 0.8])
33
  >>> print(res)
34
  {'Sentry_2022_11_PROACT_CELADON_7.5M_MOB_2022_11_25_12_12_39': {'volcanic-sweep-3_02_2023_N_LN1_ep288_TRACKER': {'idf1': 0.9543031226199543,
35
  'idp': 0.9804381846635368,
 
48
  'motp': 0.5235835810268012,
49
  'num_transfer': 0,
50
  'num_ascend': 1,
51
+ 'num_migrate': 0,
52
+ 'recognition_0.3': 0.9230769230769231,
53
+ 'recognition_0.5': 0.8461538461538461,
54
+ 'recognition_0.8': 0.46153846153846156}}}
55
  ```
56
 
57
  ## Metric Settings
 
79
  | num_fragmentations | Total number of switches from tracked to not tracked. |
80
  | mota | Multiple object tracker accuracy. |
81
  | motp | Multiple object tracker precision. |
82
+ | recognition_0.3 | Recognition rate for a threshold of 0.3 |
83
 
84
  ## Citations
85