CoolFace
Modelpublic

ravindrakapse/drywall-yoloe

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes6downloads
Model Card

drywall-yoloe

YOLOE (open-vocab YOLO11 + text-prompted seg head) fine-tuned via Ultralytics YOLOEPESegTrainer. yoloe-11s-seg backbone, imgsz 640, 30 epochs, prompt augmentation (paraphrase per batch).

Test metrics

TaskDicemIoUPrecisionRecallms/img
Crack0.6810.5470.6900.757~30
Taping0.8590.7740.8070.956~30

Best of all three pipelines on Dice + latency.

Load + predict

python
from huggingface_hub import hf_hub_download
from ultralytics import YOLOE

ckpt = hf_hub_download(repo_id="ravindrakapse/drywall-yoloe", filename="best.pt")
model = YOLOE(ckpt)
results = model.predict("image.jpg", imgsz=640, conf=0.05)

See `load_models.py`.