kagabo commited on
Commit
2cfb526
·
verified ·
1 Parent(s): 7224f96

Add water meter YOLO model checkpoints

Browse files
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: ultralytics
4
+ tags:
5
+ - yolo
6
+ - object-detection
7
+ - water-meter
8
+ - computer-vision
9
+ ---
10
+
11
+ # Rwanda Water Meter Reading Models
12
+
13
+ This repository stores YOLO model checkpoints for a water meter reading system.
14
+
15
+ ## Classes
16
+
17
+ 0. meter
18
+ 1. window
19
+ 2. 0
20
+ 3. 1
21
+ 4. 2
22
+ 5. 3
23
+ 6. 4
24
+ 7. 5
25
+ 8. 6
26
+ 9. 7
27
+ 10. 8
28
+ 11. 9
29
+
30
+ ## Models
31
+
32
+ | File | Description |
33
+ |---|---|
34
+ | `models/old_claude_yolo12n_raw_pascal_best.pt` | Old Claude YOLOv12n raw+Pascal model |
35
+ | `models/new_clean_yolo12n_raw_pascal_best.pt` | New clean YOLOv12n model |
36
+ | `models/single_combined_yolo11m_best.pt` | Single-combined YOLO11m model |
37
+ | `models/single_combined_yolo11l_1024_best.pt` | Single-combined YOLO11l 1024 model |
38
+
39
+ ## Usage
40
+
41
+ ```python
42
+ from ultralytics import YOLO
43
+
44
+ model = YOLO("models/new_clean_yolo12n_raw_pascal_best.pt")
45
+ results = model.predict("image.jpg", imgsz=960, conf=0.10)
46
+
models/new_clean_yolo12n_raw_pascal_best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ed4461d53924911b3107853a2e6d2eefbabfa35a0bab4efc2988bc12821a173
3
+ size 21336961
models/old_claude_yolo12n_raw_pascal_best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:769cbe8b2e97861636aaaf9a4ab5e724290942cf09758d2d479bc53232d9545d
3
+ size 5560986
models/single_combined_yolo11l_1024_best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2daae4f851c429b33df3470c35f701433703573f6be4cc9d121c44d0d1b207d
3
+ size 51226841
models/single_combined_yolo11m_best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98c29c84b74bd1a85705b4dd4fe555b6802e212d228495cc127d7166e8190093
3
+ size 40552364