KaraAgroAI
commited on
Commit
•
155bc64
1
Parent(s):
cd63a9d
Update README.md
Browse files
README.md
CHANGED
@@ -17,8 +17,9 @@ tags:
|
|
17 |
|
18 |
### Model Description
|
19 |
|
20 |
-
Object detection model trained using YOLO v5x.
|
21 |
-
CADI-AI
|
|
|
22 |
|
23 |
## Intended uses & limitations
|
24 |
|
@@ -38,6 +39,7 @@ model = torch.hub.load('ultralytics/yolov5', 'KaraAgroAI/CADI-AI')
|
|
38 |
img = ['/path/to/CADI-AI-image.jpg']# batch of images
|
39 |
|
40 |
# set model parameters
|
|
|
41 |
model.conf = 0.20 # NMS confidence threshold
|
42 |
|
43 |
# perform inference
|
|
|
17 |
|
18 |
### Model Description
|
19 |
|
20 |
+
Object detection model trained using [YOLO v5x](https://github.com/ultralytics/yolov5/releases), a SOTA object detection algorithm.
|
21 |
+
The model was pre-trained on the Cashew Disease Identification with AI (CADI-AI) train set (3788 images) at a resolution of 640x640 pixels.
|
22 |
+
CADI-AI dataset is available in hugging face dataset hub.
|
23 |
|
24 |
## Intended uses & limitations
|
25 |
|
|
|
39 |
img = ['/path/to/CADI-AI-image.jpg']# batch of images
|
40 |
|
41 |
# set model parameters
|
42 |
+
# set Non-Maximum-Suppression(NMS) threshold to define minimum confidence score that a bounding box must have in order to be kept.
|
43 |
model.conf = 0.20 # NMS confidence threshold
|
44 |
|
45 |
# perform inference
|