krishuggingface commited on
Commit
ddbdd1c
·
verified ·
1 Parent(s): be1f95a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -6
README.md CHANGED
@@ -1,16 +1,17 @@
1
  ---
2
  license: apache-2.0
3
- library_name: ultralytics
 
4
  ---
5
- # YOLOv8 Expiry Date Detection Model
6
 
7
- This is a YOLOv8 model trained to detect expiry dates on product packages.
8
 
9
  ## How to Use
10
 
11
- This model is designed for use with a custom inference script. Ensure that the `ultralytics` package is installed.
12
 
13
- ## Installation
14
 
15
  ```bash
16
- pip install ultralytics
 
1
  ---
2
  license: apache-2.0
3
+ library_name: custom
4
+ pipeline_tag: object-detection
5
  ---
6
+ # Expiry Date Detection Model
7
 
8
+ This model uses a custom object detection pipeline followed by OCR to detect and extract expiry dates from product package images.
9
 
10
  ## How to Use
11
 
12
+ The model consists of a YOLOv8 object detection model followed by OCR for date extraction. The detection model identifies regions of interest (ROIs) containing dates, and OCR is used to extract the date from these ROIs.
13
 
14
+ ### Installation
15
 
16
  ```bash
17
+ pip install ultralytics pytesseract opencv-python-headless matplotlib