1from ultralytics import YOLO
2
3model = YOLO("lg227210/valve-detection-yolov8s")
4results = model("inspection_photo.jpg")
5
6for result in results:
7 for box in result.boxes:
8 cls = int(box.cls)
9 conf = float(box.conf)
10 print(f"Valve: {model.names[cls]}, Confidence: {conf:.2f}")
Trained on 861,000+ real underground gas valve well inspection images (2592x1944 resolution, 973K total, 87.9% quality pass rate).
For commercial use, contact for licensing options. Custom model development services available starting at $500.