ravindrakapse/drywall-yoloe
06
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
Best of all three pipelines on Dice + latency.
Load + predict
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`.
