YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Thalos Forklift Safety Detection โ v1.0 (Roboflow โ HuggingFace export)
This repository contains the Forklift Safety Detection model used in the Thalos Safety Intelligence platform.
It identifies forklift-related hazards including:
- forklifts in operation
- forklift proximity to pedestrians
- forkliftโvehicle near-miss conditions
- improper forklift operation zones
- forklifts in loading areas or high-risk corridors
- unsafe MHE (material handling equipment) situations
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-forklift-safety-v1/forklift_safety_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-forklift-safety-v1/resolve/main/forklift_safety_weights.pt"
response = requests.get(HF_URL)
model = torch.load(BytesIO(response.content), map_location="cpu")
โธป
๐ท๏ธ Labels / Classes
The following classes are included based on the v1.0 dataset:
forklift
forklift_near_person
forklift_operation_zone
mhe_vehicle
mhe_near_pedestrian
pedestrian
(Class names may vary slightly depending on dataset configuration.)
โธป
๐ 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 through its internal YOLO inference service.
โข Future versions (v2.0+) may expand to include forkliftโvehicle detection and distance-based safety scoring.
โข Migrating to HuggingFace helps eliminate Roboflow inference-credit costs.
โธป
๐ค 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