meaculpitt commited on
Commit
0ad3761
·
verified ·
1 Parent(s): e1da1aa

scorevision: push artifact

Browse files
Files changed (1) hide show
  1. README.md +25 -20
README.md CHANGED
@@ -1,14 +1,13 @@
1
  ---
2
  tags:
3
  - element_type:detect
4
- - model:yolov11-nano
5
- - object:person
6
  manako:
7
  description: >
8
- YOLOv11-nano fine-tuned for ground-level CCTV person detection on SN44.
9
- Trained on CrowdHuman (15k, dense crowds) + BDD100K street pedestrians.
10
- Conf threshold raised to 0.35 to minimise false positives.
11
- source: meaculpitt/Detect-Person
12
  prompt_hints: null
13
  input_payload:
14
  - name: frame
@@ -17,26 +16,32 @@ manako:
17
  output_payload:
18
  - name: detections
19
  type: detections
20
- description: Bounding boxes for detected persons
21
- evaluation_score: 0.5563
22
  last_benchmark:
23
- type: coco_val2017
24
- ran_at: '2026-03-25T02:58:57+00:00'
25
  result_path: null
26
  ---
27
 
28
- # Detect-Person — SN44
29
 
30
- YOLOv11-nano fine-tuned for ground-level CCTV person detection.
31
 
32
  | Metric | Value |
33
  |--------|-------|
34
- | mAP@50 (COCO val2017) | 55.63% |
35
- | Precision (conf=0.35) | 56.86% |
36
- | Recall | 50.67% |
37
- | Baseline to beat | 37.55% |
38
- | Model size | 5.6 MB |
39
- | Input size | 1280×1280 |
40
 
41
- **Training data**: CrowdHuman (15k) + BDD100K (3.2k pedestrians)
42
- **Validation**: COCO val2017 persons (2,693 images)
 
 
 
 
 
 
 
1
  ---
2
  tags:
3
  - element_type:detect
4
+ - model:yolov11-small
5
+ - object:vehicle
6
  manako:
7
  description: >
8
+ YOLO11s vehicle detector fine-tuned on COCO vehicles + BDD100K + VisDrone.
9
+ FP16 ONNX, 1280x1280 input. Trained R6: 59,870 images, 50 epochs.
10
+ source: meaculpitt/Detect-Vehicle
 
11
  prompt_hints: null
12
  input_payload:
13
  - name: frame
 
16
  output_payload:
17
  - name: detections
18
  type: detections
19
+ description: Bounding boxes for detected vehicles
20
+ evaluation_score: 0.7701
21
  last_benchmark:
22
+ type: visdrone_val
23
+ ran_at: 2026-03-25T17:34:00+00:00
24
  result_path: null
25
  ---
26
 
27
+ # Detect-Vehicle — SN44
28
 
29
+ YOLO11s fine-tuned for vehicle detection (car, bus, truck, motorcycle).
30
 
31
  | Metric | Value |
32
  |--------|-------|
33
+ | mAP@50 | 77.01% |
34
+ | Model | YOLO11s (FP16 ONNX) |
35
+ | Input size | 1280x1280 |
36
+ | Model size | 19.2 MB |
37
+ | Training data | COCO vehicles + BDD100K + VisDrone (59,870 images) |
38
+ | Baseline to beat | 40.72% |
39
 
40
+ ## Classes
41
+
42
+ | Output ID | Class |
43
+ |-----------|-------|
44
+ | 0 | car |
45
+ | 1 | bus |
46
+ | 2 | truck |
47
+ | 3 | motorcycle |