CoolFace
Modelpublic

uisikdag/yolo-v5-hard-hat-detection

sourceHugging Faceupdated 4y agoView on Hugging Face
3likes18downloads
Model Card

tags:

  • —yolov5
  • —yolo
  • —vision
  • —object-detection
  • —pytorch libraryname: yolov5 libraryversion: 7.0.7 inference: false

model-index:

  • —name: uisikdag/hardhat results:
  • —task: type: object-detection

metrics:

  • —type: precision # since mAP@0.5 is not available on hf.co/metrics value: 0.9284727818930048 # min: 0.0 - max: 1.0 name: mAP@0.5 ---

<div align="center"> <img width="640" alt="uisikdag/hardhat" src="https://huggingface.co/uisikdag/hardhat/resolve/main/sample_visuals.jpg"> Dataset: <br><a href="https://universe.roboflow.com/roboflow-universe-projects/hard-hats-fhbh5">Link</a> </div>

How to use

bash
pip install -U yolov5
  • —Load model and perform prediction:
python
import yolov5

# load model
model = yolov5.load('uisikdag/hardhat')
  
# set model parameters
model.conf = 0.25  # NMS confidence threshold
model.iou = 0.45  # NMS IoU threshold
model.agnostic = False  # NMS class-agnostic
model.multi_label = False  # NMS multiple labels per box
model.max_det = 1000  # maximum number of detections per image

# set image
img = 'https://github.com/ultralytics/yolov5/raw/master/data/images/zidane.jpg'

# perform inference
results = model(img, size=640)

# inference with test time augmentation
results = model(img, augment=True)

# parse results
predictions = results.pred[0]
boxes = predictions[:, :4] # x1, y1, x2, y2
scores = predictions[:, 4]
categories = predictions[:, 5]

# show detection bounding boxes on image
results.show()

# save results into "results/" folder
results.save(save_dir='results/')
  • —Finetune the model on your custom dataset:
bash
yolov5 train --data data.yaml --img 640 --batch 16 --weights uisikdag/hardhat --epochs 10

More models available at: [awesome-yolov5-models](https://github.com/keremberke/awesome-yolov5-models)