Agmiyas commited on
Commit
8e96920
1 Parent(s): a9174c2

README minor changes

Browse files
Files changed (1) hide show
  1. README.md +22 -19
README.md CHANGED
@@ -1,10 +1,10 @@
1
  # YOLOv5 Handwritten Text Detection
2
 
3
- Welcome to the Hugging Face repository for the YOLOv5 model specifically fine-tuned for handwritten text detection! This repository, hosted by armvectores, features a state-of-the-art object detection architecture that has been meticulously adapted to recognize and localize handwritten text in images and documents.
4
 
5
  ## Model Description
6
 
7
- YOLOv5 is the fifth version of the You Only Look Once (YOLO) object detection algorithm. It excels in speed and accuracy, making it an ideal choice for real-time applications. The YOLOv5 model provided here has been fine-tuned on a diverse dataset of handwritten texts to improve its specificity in detecting handwritten content as opposed to typed or printed materials.
8
 
9
  ## Features
10
 
@@ -20,7 +20,7 @@ To utilize this model for detecting handwritten text in your images, follow the
20
 
21
  Ensure you have Python 3.6 or later installed. Then install the required packages:
22
  ```
23
- pip install transformers torch torchvision
24
  ```
25
 
26
  ### How to use
@@ -30,38 +30,41 @@ You can do the predictions with the following code snippet:
30
  import ultralytics
31
  from ultralytics import YOLO
32
 
33
- # Load weights for YOLO
34
  model = YOLO('best.pt')
35
 
36
  # Do the predictions
37
  model.predict(source="path_to_your_image", save=True, show=True, show_labels=False, show_conf=False, conf=0.3)
38
  ```
39
 
40
- ## Limitations
41
-
42
- While this model performs well across a wide range of handwriting styles, the accuracy may diminish in cases of extremely cursive or overlapping text. The performance is also dependent on the quality of the input images.
43
 
44
- ## Contact Information
45
 
46
- For queries regarding this model, please post issues directly on this Hugging Face repository or contact armvectores through their Hugging Face profile.
47
 
48
- ---
 
 
49
 
50
- This description should provide users with an overview of the YOLOv5 model tailored for handwritten text detection, along with basic usage instructions. Remember, always respect the usage guidelines and terms of service when utilizing models from repositories.
 
 
51
 
52
  ## Metrics
53
 
54
- There is some metrics for trained model.
55
  <p align="center">
56
  <img width="400px" src="results.png" alt="qr"/>
57
  </p>
58
 
59
- ## Tests
60
 
61
- <p align="center">
62
- <img width="400px" src="prediction1.png" alt="qr"/>
63
- </p>
64
 
65
- <p align="center">
66
- <img width="400px" src="prediction2.png" alt="qr"/>
67
- </p>
 
 
 
 
 
1
  # YOLOv5 Handwritten Text Detection
2
 
3
+ Welcome to the Hugging Face repository for the YOLOv8 model specifically fine-tuned for handwritten text detection! This repository, hosted by armvectores, features a state-of-the-art object detection architecture that has been meticulously adapted to recognize and localize handwritten text in images and documents.
4
 
5
  ## Model Description
6
 
7
+ YOLOv8 is the eighth version of the You Only Look Once (YOLO) object detection algorithm. It excels in speed and accuracy, making it an ideal choice for real-time applications. The YOLOv8 model provided here has been fine-tuned on a diverse dataset of handwritten texts to improve its specificity in detecting handwritten content as opposed to typed or printed materials.
8
 
9
  ## Features
10
 
 
20
 
21
  Ensure you have Python 3.6 or later installed. Then install the required packages:
22
  ```
23
+ pip install ultralytics
24
  ```
25
 
26
  ### How to use
 
30
  import ultralytics
31
  from ultralytics import YOLO
32
 
33
+ # Load weights for YOLO from our repository
34
  model = YOLO('best.pt')
35
 
36
  # Do the predictions
37
  model.predict(source="path_to_your_image", save=True, show=True, show_labels=False, show_conf=False, conf=0.3)
38
  ```
39
 
 
 
 
40
 
41
+ ## Tests
42
 
43
+ Here the examples of model work:
44
 
45
+ <p align="center">
46
+ <img width="400px" src="prediction1.png" alt="qr"/>
47
+ </p>
48
 
49
+ <p align="center">
50
+ <img width="400px" src="prediction2.png" alt="qr"/>
51
+ </p>
52
 
53
  ## Metrics
54
 
55
+ There is some metrics of trained model.
56
  <p align="center">
57
  <img width="400px" src="results.png" alt="qr"/>
58
  </p>
59
 
60
+ ## Limitations
61
 
62
+ While this model performs well across a wide range of handwriting styles, the accuracy may diminish in cases of extremely cursive or overlapping text. The performance is also dependent on the quality of the input images.
 
 
63
 
64
+ ## Contact Information
65
+
66
+ For queries regarding this model, please post issues directly on this Hugging Face repository or contact armvectores through their Hugging Face profile.
67
+
68
+ ---
69
+
70
+ This description should provide users with an overview of the YOLOv8 model tailored for handwritten text detection, along with basic usage instructions. Remember, always respect the usage guidelines and terms of service when utilizing models from repositories.