mehmetkeremturkcan/YOLO11xxl
This is a YOLO model based on the YOLO11x architecture. It achieves an mAP50-95 of 57.3% on the COCO val 2017 dataset and achieves 30FPS on last-generation commercial GPUs, a state-of-the-art for models that can achieve real-time object detection with modern GPUs.
Importantly, this model does not use external data for pretraining unlike other SOTA-like models in the modern object detection space, and thus is uncontaminated with validation data. We are in the process of training the next generation of models with external data as a next step.
1from ultralytics import YOLO
2model = YOLO('yolo11xxl.pt')
3results = model.predict('example.png', augment=True, imgsz=1280)
This work was supported in part by the National Science Foundation under grant EEC-2133516, with compute grants from Empire AI Consortium and NVIDIA Academic Grant program.