krishnamishra8848 commited on
Commit
d1097dc
Β·
verified Β·
1 Parent(s): bec2796

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +69 -37
README.md CHANGED
@@ -2,44 +2,76 @@
2
  license: apache-2.0
3
  pipeline_tag: object-detection
4
  ---
 
 
5
 
6
- <title>Nepal Vehicle License Plates Detection Model (Version 3)</title>
7
- <description>
8
- This repository contains the **Version 3** of the Nepal Vehicle License Plates Detection Model.
9
- This version detects **individual characters** in Nepalese vehicle license plates and draws bounding boxes around each one.
10
- It is an improvement over the earlier version, which detected license plates as a whole.
11
- </description>
12
-
13
- <features>
14
- <feature>
15
- <title>Character-Wise Detection</title>
16
- <details>
17
- Unlike the earlier model, this version detects each character in the license plate individually and draws separate bounding boxes.
18
- </details>
19
- </feature>
20
- <feature>
21
- <title>Improved Accuracy</title>
22
- <details>
23
- Trained with refined datasets and configurations, resulting in higher precision and recall.
24
- </details>
25
- </feature>
26
- <feature>
27
- <title>Real-Time Inference</title>
28
- <details>
29
- Optimized for fast and accurate predictions, suitable for deployment in real-world applications.
30
- </details>
31
- </feature>
32
- </features>
33
-
34
- <previousModel>
35
- <title>Earlier Model</title>
36
- <link>
37
- <url>https://huggingface.co/krishnamishra8848/Nepal-Vehicle-License-Plate-Detection</url>
38
- <description>
39
- The earlier version of this project detected license plates as a whole. Click the link above to explore it.
40
- </description>
41
- </link>
42
- </previousModel>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  ```python
45
  # Example Code: Test this code on colab
 
2
  license: apache-2.0
3
  pipeline_tag: object-detection
4
  ---
5
+ <repository>
6
+ <title>πŸ“Œ Nepal Vehicle License Plates Detection Model (Version 3)</title>
7
 
8
+ <section>
9
+ <heading>πŸ” Description</heading>
10
+ <content>
11
+ **Version 3** of the Nepal Vehicle License Plates Detection Model offers advanced functionality to detect **individual characters** in Nepalese vehicle license plates and draw bounding boxes around each one.
12
+ This version enhances the accuracy and granularity of detection compared to earlier versions, making it ideal for real-world applications.
13
+ </content>
14
+ </section>
15
+
16
+ <section>
17
+ <heading>✨ Key Features</heading>
18
+ <features>
19
+ <feature>
20
+ <name>πŸ“ **Character-Wise Detection**</name>
21
+ <summary>Detects and draws bounding boxes for each character in a license plate for precise recognition.</summary>
22
+ </feature>
23
+ <feature>
24
+ <name>🎯 **High Precision and Recall**</name>
25
+ <summary>Achieves industry-leading metrics, ensuring accurate and reliable performance.</summary>
26
+ </feature>
27
+ <feature>
28
+ <name>⚑ **Real-Time Inference**</name>
29
+ <summary>Optimized for fast predictions, making it suitable for live detection applications.</summary>
30
+ </feature>
31
+ </features>
32
+ </section>
33
+
34
+ <section>
35
+ <heading>πŸ“œ Earlier Model</heading>
36
+ <content>
37
+ Explore the earlier version of this project, which detects license plates as a whole:
38
+ [Nepal Vehicle License Plate Detection](https://huggingface.co/krishnamishra8848/Nepal-Vehicle-License-Plate-Detection)
39
+ </content>
40
+ </section>
41
+
42
+ <section>
43
+ <heading>πŸ“Š Model Performance Metrics</heading>
44
+ <metrics>
45
+ <metric>
46
+ <name>**Precision**</name>
47
+ <value>0.985</value>
48
+ <description>Percentage of correct bounding box predictions among all predictions.</description>
49
+ </metric>
50
+ <metric>
51
+ <name>**Recall**</name>
52
+ <value>0.984</value>
53
+ <description>Percentage of ground truth objects successfully detected.</description>
54
+ </metric>
55
+ <metric>
56
+ <name>**mAP@50**</name>
57
+ <value>0.994</value>
58
+ <description>Mean Average Precision at IoU threshold 0.5.</description>
59
+ </metric>
60
+ <metric>
61
+ <name>**mAP@50-95**</name>
62
+ <value>0.861</value>
63
+ <description>Mean Average Precision across multiple IoU thresholds (0.5 to 0.95).</description>
64
+ </metric>
65
+ <metric>
66
+ <name>**Inference Speed**</name>
67
+ <value>~2.4ms per image</value>
68
+ <description>Time taken to process a single image during inference.</description>
69
+ </metric>
70
+ </metrics>
71
+ </section>
72
+
73
+
74
+ </repository>
75
 
76
  ```python
77
  # Example Code: Test this code on colab