You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: subjects/ai/vision-track/audit/README.md
+23-22Lines changed: 23 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,9 @@
17
17
###### Is the dataset loaded and preprocessed to remove anomalies, handle missing values, and prepare video/image frames for object detection and tracking?
18
18
19
19
###### Does data preprocessing include resizing and normalization, ensuring compatibility with YOLO model input formats?
20
-
* Validation of YOLO-compatible annotations (.txt files with class, x, y, w, h).
21
-
* Confirm frames are resized and normalized properly before inference.
20
+
21
+
- Validation of YOLO-compatible annotations (.txt files with class, x, y, w, h).
22
+
- Confirm frames are resized and normalized properly before inference.
22
23
23
24
##### Model Implementation
24
25
@@ -64,35 +65,35 @@
64
65
65
66
###### Check:
66
67
67
-
* Require metrics file:
68
+
- Require metrics file:
68
69
69
-
```
70
-
reports/performance_metrics.json
71
-
```
70
+
```
71
+
reports/performance_metrics.json
72
+
```
72
73
73
-
* Validate JSON includes:
74
+
- Validate JSON includes:
74
75
75
-
```json
76
-
{
77
-
"detection_precision": ...,
78
-
"detection_recall": ...,
79
-
"f1_score": ...,
80
-
"average_fps_per_stream": ...,
81
-
"average_latency_ms": ...
82
-
}
83
-
```
76
+
```json
77
+
{
78
+
"detection_precision": ...,
79
+
"detection_recall": ...,
80
+
"f1_score": ...,
81
+
"average_fps_per_stream": ...,
82
+
"average_latency_ms": ...
83
+
}
84
+
```
84
85
85
-
* Add minimum thresholds:
86
+
- Add minimum thresholds:
86
87
87
-
Precision ≥ 0.85
88
+
Precision ≥ 0.85
88
89
89
-
Recall ≥ 0.80
90
+
Recall ≥ 0.80
90
91
91
-
F1 ≥ 0.85
92
+
F1 ≥ 0.85
92
93
93
-
FPS ≥ 15 (720p)
94
+
FPS ≥ 15 (720p)
94
95
95
-
* Add check that metrics are visible in Streamlit dashboard (FPS + latency shown live).
96
+
- Add check that metrics are visible in Streamlit dashboard (FPS + latency shown live).
0 commit comments