# ECDet-X > ECDet-X: transformer object detector from the ECDet family. Available in LibreYOLO, the MIT-licensed open-source library (free for commercial use). - Family: ECDet (Intellindust AI Lab) - Parameters: 49.0M - GFLOPs: 151.0 - Default input size: 640px - Detection: detr · nms-free - Architecture: transformer · ECViT (compact ViT) backbone - Weight license: Apache-2.0 - Paper-reported mAP@50-95: 57.9% - Paper: https://arxiv.org/abs/2603.18739 - Original code: https://github.com/Intellindust-AI-Lab/EdgeCrafter ## Benchmarks (COCO val2017) | Hardware | Runtime | mAP@50-95 | FPS | Latency (ms) | VRAM (MB) | |---|---|---|---|---|---| | NVIDIA Jetson Orin Nano Super 8GB | ONNX Runtime FP32 | 61.1 | 2.4 | 422.4 | - | | NVIDIA Jetson Orin Nano Super 8GB | PyTorch FP32 | 61.1 | 2.9 | 349.5 | 289 | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP16 | 61.0 | 5.7 | 174.8 | - | | NVIDIA Jetson Orin Nano Super 8GB | TensorRT FP32 | 61.1 | 5.4 | 186.5 | - | | NVIDIA RTX 5070 Ti | ONNX Runtime FP32 | 61.1 | 31.9 | 31.3 | - | | NVIDIA RTX 5070 Ti | PyTorch FP32 | 61.1 | 23.0 | 43.5 | 294 | | NVIDIA RTX 5070 Ti | TensorRT FP16 | 61.0 | 41.3 | 24.2 | - | | NVIDIA RTX 5070 Ti | TensorRT FP32 | 61.1 | 45.6 | 21.9 | - | | Raspberry Pi 5 | ONNX Runtime FP32 | 61.1 | 0.3 | 3331.4 | - | | Raspberry Pi 5 | PyTorch FP32 | 61.1 | 0.3 | 3635.1 | - | ## Usage with LibreYOLO ```python from libreyolo import LibreYOLO model = LibreYOLO("LibreECx.pt") result = model("image.jpg", conf=0.25, iou=0.45) ``` Source: https://www.visionanalysis.org/model/ec-x. Benchmarks produced with LibreYOLO (https://github.com/Libre-YOLO/libreyolo).