Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- dental
|
| 6 |
+
- medical
|
| 7 |
+
- object-detection
|
| 8 |
+
- yolov8
|
| 9 |
+
- cavity-detection
|
| 10 |
+
- xray
|
| 11 |
+
datasets:
|
| 12 |
+
- custom-dental-opg
|
| 13 |
+
metrics:
|
| 14 |
+
- mAP
|
| 15 |
+
model-index:
|
| 16 |
+
- name: YOLOv8 Dental Cavity Detector
|
| 17 |
+
results:
|
| 18 |
+
- task:
|
| 19 |
+
type: object-detection
|
| 20 |
+
metrics:
|
| 21 |
+
- type: mAP
|
| 22 |
+
value: 0.0 # Update after training
|
| 23 |
+
name: mAP@0.5
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
# YOLOv8 Dental Cavity Detection Model
|
| 27 |
+
|
| 28 |
+
Fine-tuned YOLOv8 for detecting dental cavities in OPG X-ray images.
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from ultralytics import YOLO
|
| 34 |
+
|
| 35 |
+
model = YOLO("Sentoz/dental-opg-cavity-detection-model")
|
| 36 |
+
results = model("opg_xray.jpg", conf=0.25)
|
| 37 |
+
results[0].show()
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## Training Details
|
| 41 |
+
|
| 42 |
+
- Base model: YOLOv8n
|
| 43 |
+
- Dataset: Dental OPG X-ray images
|
| 44 |
+
- Task: Object detection (cavity localization)
|
| 45 |
+
- Input size: 640×640
|