HOMEY is a novel framework for AI-driven property risk detection, combining YOLO object detection with domain-specific heuristic masking and risk-aware loss calibration.
The model targets 17 classes of property risk indicators, including:
Property imagery often contains cluttered scenes with subtle risk cues. HOMEY enhances detection by amplifying weak signals through heuristic object masking while maintaining fast, reliable inference, suitable for real-world insurance workflows.
🔹 Heuristic Object Masking
🔹 Risk-Aware Loss Calibration
🔹 Integrated YOLO Enhancement
Models without heuristic masking often miss subtle hazards or over-focus on background clutter. HOMEY shifts attention to high-risk property regions, improving interpretability for underwriting teams.
On real-world property datasets:
✅ Higher mAP (mean Average Precision) across 17 classes ✅ Reduced false negatives for critical hazards ✅ Fast inference (~YOLO-level speed) ✅ Stable performance under varied property conditions
🔗 arXiv Link: https://arxiv.org/abs/2603.18502
📌 DOI: 10.48550/arXiv.2603.18502
Property risk detection for insurance requires models that are:
HOMEY achieves this by enhancing signal extraction rather than just increasing network depth or dataset size.
We provide a reproducible PyTorch pipeline in the src/ directory. HOMEY supports:
HOMEY/
│
├── src/
│ ├── train_homey.py
│ ├── models/
│ ├── datasets/
│ ├── losses/
│ └── utils/
│
├── data/
│ ├── train/
│ ├── val/
│ └── test/
│
└── outputs/
Each class folder in train/ or val/ should contain images labeled by risk type:
train/
cracked_foundation/
overgrown_bushes/
falling_gutters/
...
git clone https://github.com/kaopanboonyuen/HOMEY.git
cd HOMEY
conda create -n homey python=3.10
conda activate homey
pip install -r requirements.txt
python src/train_homey.py \
--train_dir data/train \
--val_dir data/val \
--backbone yolov8n \
--epochs 100 \
--batch_size 16 \
--lr 3e-4
outputs/
best_model.pth
training_logs/
detection_results/
Automatic tracking of:
✅ Validation mAP per class ✅ Risk-weighted loss curves ✅ Checkpoint saving with GPU support
HOMEY training directly targets real-world insurance risk detection:
The model sees property risk — not irrelevant background clutter.
🎓 Talent Scholarship for Exceptional Ability 🏫 College of Computing, Khon Kaen University
@article{panboonyuen2026homey,
author = {Teerapong Panboonyuen},
title = {HOMEY: Heuristic Object Masking with Enhanced YOLO for Property Insurance Risk Detection},
journal = {arXiv preprint arXiv:2603.18502},
year = {2026},
doi = {10.48550/arXiv.2603.18502}
}
⭐ If you find this project useful, please consider starring the repository!