--- language: en license: agpl-3.0 library_name: ultralytics tags: - military - drone - object-detection - aerial-surveillance - defense metrics: - map - precision - recall model_name: VeritaMilitary base_model: - Ultralytics/YOLO26 base_model_relation: finetune --- # VeritaScan 🛡️ **VeritaScan** is a high-performance, lightweight object detection model specifically optimized for **Aerial Military Surveillance**. It is designed to be deployed on tactical drones with limited onboard computing power. Developed by **M Mashhudur Rahim (XythicK)** at **Arkito Lab** (A Non-Profit Research Organization). ## 🚀 Model Overview - **Model Size:** 5.4 MB - **Target Domain:** Aerial/Drone View - **Inference Speed:** ~2.7ms per image ## 📊 Training Results The model was trained to achieve a solid balance between speed and accuracy for edge devices. | Metric | Value | | :--- | :--- | | **mAP@.5-.95** | **88.7%** | | **Precision** | **96.2%** | | **Recall** | **98.6%** | ### Performance Visualization The following graphs illustrate the training progress and model evaluation: #### Training Curves ![Results](result.jpg) ## 🎯 Domain Specialization (Aerial vs Ground) **VeritaMilitary** is highly specialized for top-down perspectives. While it may show sensitivity to perspective shifts in ground-level imagery, it demonstrates exceptional precision in aerial views with confidence scores up to **90%**. | Aerial Detection (Success) | | | :---: | :---: | | ![Aerial](4.png) | ![Ground](5.png) | | **AirCraft Tracking** | | **Military Vehicle Tracking** | ## 📦 Multi-Platform Deployment & Downloads VeritaMilitary supports a wide range of hardware. Click the buttons below to download the optimized formats: | Framework | Target Hardware | Optimization | One-Click Download | | :--- | :--- | :--- | :--- | | | **Universal** (PC, Cloud, Edge) | Standard FP32/FP16 | [**⬇️ Download ONNX**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan.onnx) | | | **NVIDIA Jetson / RTX** | CUDA Accelerated | [**⬇️ Download TensorRT (.engine)**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan.engine) | | | **Intel CPU / iGPU** | OpenVINO Runtime | [**⬇️ Download OpenVINO**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan_openvino_model.zip) | | | **Mobile / Android** | Mobile Quantized | [**⬇️ Download TFLite**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan_float16.tflite) | | | **Web Browsers** | TensorFlow.js | [**⬇️ Download TF.js**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan_web_model.zip) | | | **Legacy Systems** | Frozen Graph (.pb) | [**⬇️ Download TF-PB**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan.pb) | | | **C++ / Production** | TorchScript JIT | [**⬇️ Download TorchScript**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/best.torchscript) | | | **iOS / macOS** | Apple Neural Engine | [**⬇️ Download CoreML**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan.mlpackage.zip) | | | **Embedded Devices** | MNN Optimized | [**⬇️ Download MNN**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan.mnn) | | | **Embedded Devices** | NCNN Optimized | [**⬇️ Download NCNN**](https://huggingface.co/arkito/VeritaMilitary/resolve/main/veritascan_ncnn_model.zip) | ## 🛠 Usage ```python from ultralytics import YOLO # Load VeritaMilitary model = YOLO('veritascan.pt') # Run Inference results = model.predict(source='drone_footage.mp4', imgsz=640, conf=0.25) results[0].show() ``` ### 🏢 About Arkito Lab Arkito Lab is a non-profit organization dedicated to open-source research and the development of AI solutions for humanitarian and defense technology. Maintained by: M Mashhudur Rahim (XythicK) ### Cite This Project If you use this model in your research please cite ``` @software{XythicK_VeritaScan_2026, author = {M Mashhudur Rahim (XythicK)}, title = {VeritaScan: Lightweight Nano Object Detection for Aerial Military Surveillance}, year = {2026}, publisher = {Arkito Lab}, url = {https://huggingface.co/arkito/VeritaScan}, } ```