Voxel51/VisDrone2019-DET
Viewer โข Updated โข 8.63k โข 7.38k โข 16
YOLO11s trained on VisDrone2019-DET, compiled to AX650 AXMODEL via Pulsar2.
| Item | Value |
|---|---|
| Architecture | YOLO11s |
| Task | Object Detection |
| Classes | 11 (pedestrian, people, bicycle, car, van, truck, tricycle, awning-tricycle, bus, motor) |
| Input | 640ร640 BGR, uint8 [0,255] โ float [0,1] |
| Chip | AX650N (NPU3) |
| Quantization | INT8 (MinMax PerLayer) |
| Size | 10.2 MB |
| Latency | ~3.3 ms |
models/ AXMODEL + model_meta.json
demo/ 5 VisDrone test images
python/ Python SDK (pydet + libdet.axera)
cpp/ Pre-compiled C++ binaries
bin/ visdrone_detect (aarch64)
lib/ libdet.so
include/ Headers
cd cpp
chmod +x bin/visdrone_detect
LD_LIBRARY_PATH=./lib:/soc/lib ./bin/visdrone_detect \
../models/model.axmodel ../demo/demo_00.jpg 0.25
cd python
pip install -r requirements.txt
python example.py --model ../models/model.axmodel --image ../demo/demo_00.jpg
Requires pyaxengine on the target board.
| Output Layer | Cosine Similarity | MSE |
|---|---|---|
| output0 (80ร80) | 0.99999 | 0.005 |
| output1 (40ร40) | 1.00000 | 0.004 |
| output2 (20ร20) | 0.99999 | 0.004 |
Input uint8 BGR [0,255] is normalized to float [0,1] via std=1/255, matching the original ONNX model input range.