YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Thalos Construction Safety Barriers Detection β v1.0 (Roboflow β HuggingFace export)
This repository contains the Construction Safety Barriers Detection model used in the Thalos Safety Intelligence platform.
It identifies barrier-related safety controls and potential issues around:
- construction safety barriers
- guardrails
- cones and barricades
- exclusion zones
- missing or incomplete barrier coverage
- unsafe proximity to restricted areas
- gaps where fall or struck-by risks may exist
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-construction-barriers-v1/construction_barriers_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-construction-barriers-v1/resolve/main/construction_barriers_weights.pt"
response = requests.get(HF_URL)
model = torch.load(BytesIO(response.content), map_location="cpu")
βΈ»
π·οΈ Labels / Classes
Based on the v1.0 dataset, the following classes are included:
barrier
guardrail
cone
barricade
restricted_zone
gap_in_barrier
(Label names may vary slightly depending on the final Roboflow dataset schema.)
βΈ»
π License
This model is distributed under the AGPL-3.0 license, consistent with Roboflow export requirements.
βΈ»
π Important Notes
β’ This repository contains only the model weights, not training data.
β’ Thalos uses this model via server-side inference in the YOLO microservice.
β’ Future versions (v2.0+) may integrate hazard-specific rules (e.g., barrier types vs. edge conditions).
β’ Hosting on HuggingFace removes dependency on Roboflowβs inference and credit system.
βΈ»
π€ Maintainer
Thalos Tech (2025)
Safety Intelligence & Hazard Detection Platform
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support