CoolFace
Modelpublic

brunosalme/dental-panoramic-detector

sourceHugging Facecc-by-nc-4.0updated 2mo agoView on Hugging Face
0likes63downloads
Model Card

Dental Panoramic X-Ray Detector

YOLO11-N model trained to detect dental pathologies on panoramic radiographs.

Classes

IDNameDescription
0cariesDental caries (including deep caries)
1periapical_lesionPeriapical lesion / apical periodontitis
2impacted_toothImpacted and wisdom teeth

Performance

Trained on 9,928 panoramic X-rays, validated on DENTEX val set (46 images, 182 boxes).

MetricScore
mAP500.622
mAP50-950.406
Precision0.630
Recall0.614

Training converged at epoch 27/57 (early stopping, patience=30).

Training Data

liodon-ai/dental-panoramic-xray-yolo — combined DENTEX + OralXrays-9 (CVPR 2025), 9,928 train images, 39,715 annotated boxes.

Files

FileSizeDescription
best.pt5.2 MBPyTorch weights (Ultralytics)
best.onnx10.1 MBONNX export for framework-agnostic inference

Recommended Inference Settings

ParameterValueReason
conf0.45Filters weak detections — reduces noise without missing high-confidence findings
iou0.35Tighter NMS — prevents duplicate boxes on adjacent teeth
imgsz640Training resolution

At conf=0.25 the model over-fires on caries (adjacent teeth flagged together). At conf=0.45 output is clean and clinically readable.

Usage

python
from ultralytics import YOLO

model = YOLO("best.pt")
results = model("panoramic.jpg", imgsz=640, conf=0.45, iou=0.35)
results[0].show()

Or with ONNX:

python
import onnxruntime as ort
sess = ort.InferenceSession("best.onnx")

Per-Class Notes

`impacted_tooth` — highest quality class. Consistently detects impacted wisdom teeth with tight boxes and 0.66–0.84 confidence. Closest to clinical-grade.

`periapical_lesion` — fires correctly when present, but limited by small val set. Treat as a flag to look closer, not a diagnosis.

`caries` — directionally correct (right quadrant, right teeth) but recall is limited at panoramic resolution. Use as a screening hint, not a count.

Citation

@model{liodonai2026dentalpanoramic,
  title={Dental Panoramic X-Ray Detector},
  author={Liodon AI},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/liodon-ai/dental-panoramic-detector}
}