# DEIMv2-N > DEIMv2-N: transformer object detector from the DEIMv2 family. Available in LibreYOLO, the MIT-licensed open-source library (free for commercial use). - Family: DEIMv2 (Intellindust AI Lab) - Parameters: 3.6M - GFLOPs: 6.9 - Default input size: 640px - Detection: detr · nms-free - Architecture: transformer · DINOv3-distilled ViT backbone - Weight license: Apache-2.0 - Paper-reported mAP@50-95: 43% - Paper: https://arxiv.org/abs/2509.20787 - Original code: https://github.com/Intellindust-AI-Lab/DEIMv2 ## Benchmarks (COCO val2017) | Hardware | Runtime | mAP@50-95 | FPS | Latency (ms) | VRAM (MB) | |---|---|---|---|---|---| | NVIDIA Jetson Orin Nano Super 8GB | ONNX Runtime FP32 | 46.7 | 17.6 | 56.8 | - | | NVIDIA Jetson Orin Nano Super 8GB | PyTorch FP32 | 46.7 | 11.1 | 89.8 | 63 | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP16 | 46.6 | 41.2 | 24.3 | - | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP32 | 46.7 | 33.0 | 30.3 | - | | NVIDIA RTX 5070 Ti | ONNX Runtime FP32 | 46.7 | 76.3 | 13.1 | - | | NVIDIA RTX 5070 Ti | PyTorch FP32 | 46.7 | 35.1 | 28.5 | 70 | | NVIDIA RTX 5070 Ti | TensorRT FP16 | 46.6 | 78.0 | 12.8 | - | | NVIDIA RTX 5070 Ti | TensorRT FP32 | 46.7 | 70.1 | 14.3 | - | | Raspberry Pi 5 | ONNX Runtime FP32 | 46.7 | 4.4 | 226.3 | - | | Raspberry Pi 5 | PyTorch FP32 | 46.7 | 2.4 | 423.0 | - | ## Usage with LibreYOLO ```python from libreyolo import LibreYOLO model = LibreYOLO("LibreDEIMv2n.pt") result = model("image.jpg", conf=0.25, iou=0.45) ``` Source: https://www.visionanalysis.org/model/deimv2-n. Benchmarks produced with LibreYOLO (https://github.com/Libre-YOLO/libreyolo).