YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Thalos Industrial PPE Detection β v1.0 (Roboflow β HuggingFace export)
This repository contains the Industrial PPE Detection model used in the Thalos Safety Intelligence platform.
It identifies PPE compliance and workplace hazards related to industrial personal protective equipment, including:
- gloves
- safety glasses
- hard hats
- respirators / masks
- high-visibility vests
- protective clothing
- missing or incorrect PPE
- improper PPE usage in industrial settings
This model was originally trained in Roboflow (Object Detection Large / YOLOv8-derived)
and exported as a PyTorch .pt file.
It is now hosted on HuggingFace for independent, cost-controlled inference inside the Thalos YOLO service.
π§ͺ Usage (Python)
from ultralytics import YOLO
model = YOLO("thalostech2025/thalos-industrial-ppe-v1/industrial_ppe_weights.pt")
results = model("example.jpg")
results.show()
βΈ»
π Load From URL (Used by the Thalos YOLO Service)
import torch
import requests
from io import BytesIO
HF_URL = "https://huggingface.co/thalostech2025/thalos-industrial-ppe-v1/resolve/main/industrial_ppe_weights.pt"
response = requests.get(HF_URL)
model = torch.load(BytesIO(response.content), map_location="cpu")
βΈ»
π·οΈ Labels / Classes
gloves
safety_glasses
hard_hat
hi_vis_vest
respirator_mask
protective_clothing
no_ppe_detected
(Note: label names may vary slightly depending on v1.0 dataset; update if needed.)
βΈ»
π License
This model is distributed under the AGPL-3.0 license, consistent with Roboflow export requirements.
βΈ»
π Important Notes
β’ This repository includes only the model weights, not the training data.
β’ Thalos uses this model for server-side inference through the YOLO service.
β’ Future versions (v2.0+) may be consolidated with construction-PPE models or retrained with multi-industry datasets.
βΈ»
π€ Maintainer
Thalos Tech (2025)
Safety Intelligence & Hazard Detection Platform
---
# π§ͺ **PHASE 4 β Ready for Cursor**
Once you upload the weights & commit the model card:
Tell me:
**βReady for the Cursor integration prompt.β**
I will generate:
- the exact `HOUSEKEEPING_MODEL_URL`-style env variable
- the YOLO service registry entry
- everything Cursor needs to add the new detector cleanly and safely
---
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support