--- license: agpl-3.0 --- ![](https://cas-bridge.xethub.hf.co/xet-bridge-us/695fdec747d2e9ec0b150c19/ae4c027571a41d601a77794af01465ee01980c264cc3d433a95c7862009265cd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20260108%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260108T181209Z&X-Amz-Expires=3600&X-Amz-Signature=b782ba9117a4aea6203a955fa313dd883d126faa571e24d92cb604a8f1a3c047&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=68244ecaacb9255c9de71f52&response-content-disposition=inline%3B+filename*%3DUTF-8%27%27sample_image.jpg%3B+filename%3D%22sample_image.jpg%22%3B&response-content-type=image%2Fjpeg&x-id=GetObject&Expires=1767899529&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTc2Nzg5OTUyOX19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2FzLWJyaWRnZS54ZXRodWIuaGYuY28veGV0LWJyaWRnZS11cy82OTVmZGVjNzQ3ZDJlOWVjMGIxNTBjMTkvYWU0YzAyNzU3MWE0MWQ2MDFhNzc3OTRhZjAxNDY1ZWUwMTk4MGMyNjRjYzNkNDMzYTk1Yzc4NjIwMDkyNjVjZCoifV19&Signature=aHcr6tDQuZ4E56nL0bZPw4d2QZbLa%7EZ5-ZFRWWWQ9c3R7NtC9hkNn4htlKdvImfUnn1eaPpa%7Enx7kxENwaR8kP7v0O%7E-BDESAt-Nym9atoHb4R1icym5mnyKIj0FMqVgWwmMEpq5snftd5NSh6rMoDkfh6N0H8gF6cffP5EkFjIqz10nMVlSVPqzO3WJqVrKD%7ElAyEPPLrEUXDv%7ETd448XqK0Ni4eVW-Win-s17-5rlXXDfROFB-JC0wmeDJyxR5KF9ZNBZXjuwoPMYk7j5-VQt5mjasEVLvKgg7QxIh4Z3sSb9rQ7BeqahKfOykwBKfLu32udjKkq0FXgGHuAiJWA__&Key-Pair-Id=K2L8F4GPSG1IFC) # Human Fall Detection with YOLOv11 This model is a specialized version of YOLOv11, fine-tuned to detect human falls in various environments. It is designed to provide real-time alerts for safety monitoring in elderly care facilities, hospitals, and industrial workplaces. ## 🚀 Quick Start (Usage) You don't need to download the weights manually. You can load and run the model directly using the Python code below: ```python from ultralytics import YOLO # 1. Load the model from Hugging Face model = YOLO("melihuzunoglu/human-fall-detection") # 2. Run inference on an image or video # Replace 'your_video.mp4' with your actual file path results = model.predict(source="your_video.mp4", conf=0.25, save=True) # 3. View results for result in results: result.show() ``` ## ✅ Supported Classes (Labels) The model can detect and distinguish between the following three states: ```python Falling: Active falling motion or a person on the ground after a fall. Sitting: People sitting on chairs, benches, or floor. Standing: People in an upright, standing position. ``` ## 📊 Model Information ```python Architecture: YOLOv11 (Ultralytics) Task: Object Detection (Fall Detection) Input Resolution: 640x640 pixels Inference Speed: Optimized for real-time applications ``` ## 🎯 Target Applications ```python Elderly Safety: Automated fall detection for home or nursing home environments. Occupational Health: Monitoring falls in hazardous work zones or construction sites. Healthcare Support: Providing an extra layer of monitoring for patient rooms. ``` ## 🛠 Training Details The model was trained using the Ultralytics framework. The dataset was curated and pre-processed via Roboflow to ensure high accuracy and minimal false positives in common sitting or lying down scenarios. ## 👤 Developer Author: Melih Uzunoğlu [Linkedin](https://www.linkedin.com/in/melih-uzunoglu/) Framework: Ultralytics YOLOv11 Dataset Source: Roboflow ### Disclaimer This model is developed for educational and research purposes. For critical safety implementations, it should be integrated with professional-grade monitoring systems.