Downloads · 30 days
0
AyushYele/Sentinel_Ai
Sentinel_Ai is a object detection model from AyushYele. Use it when you need objects located in an image. The card lists the license as mit.
This is a custom-trained YOLOv8 Medium model explicitly designed to detect real-time threats from surveillance cameras.
Downloads · 30 days
0
Access
Public
Updated Apr 15, 2026
Repo size
52 MB
Likes
0
Public
Click a slice to open those files.
.pt52 MB · 100%
From the Hugging Face model README
This is a custom-trained YOLOv8 Medium model explicitly designed to detect real-time threats from surveillance cameras.
The Sentinel AI model was trained on thousands of physical crime scene videos and acts as the vision engine for the Sentinel AI Pipeline. It is optimized to track background pedestrians while simultaneously isolating high-threat events like physical violence.
This model predicts 4 specific macro-classes for emergency dispatch scenarios:
0: fight (Physical altercations, assault)1: weapon (Knives, handguns, blunt objects)2: violence (Robbery, vandalism, rioting)3: normal (Pedestrians, standing objects)You can plug this model directly into standard Ultralytics YOLO inference code:
from ultralytics import YOLO
# Load the custom trained model
model = YOLO("AyushYele/Sentinel_Ai")
# Run inference on an image
results = model("surveillance_feed.jpg")
results[0].show()