CoolFace
Apppublic

qmaruf/objectdetection

sourceHugging Faceupdated 1y agoView on Hugging Face
1likes
readme.md14 linesDownload Raw Back to root
1# COCO Object Detection API (Free on Hugging Face Spaces)2 3Deploys a YOLOv5s model pretrained on MS COCO.4 5## Features6- Upload image via web UI or API7- Returns JSON (bounding boxes, class, confidence)8 9## Example API Call10```bash11curl -X POST \12  -F "data=@your_image.jpg" \13  https://YOUR_SPACE_URL/run/predict14