├── LICENSE ├── README.md ├── draw-engine.py ├── export_qat.py ├── install_dependencies.sh ├── models ├── experimental_trt.py ├── quantize.py └── quantize_rules.py ├── patch_yolov9.sh ├── qat.py ├── scripts ├── generate_trt_engine.sh └── val_trt.sh ├── segment └── qat_seg.py └── val_trt.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/README.md -------------------------------------------------------------------------------- /draw-engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/draw-engine.py -------------------------------------------------------------------------------- /export_qat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/export_qat.py -------------------------------------------------------------------------------- /install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/install_dependencies.sh -------------------------------------------------------------------------------- /models/experimental_trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/models/experimental_trt.py -------------------------------------------------------------------------------- /models/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/models/quantize.py -------------------------------------------------------------------------------- /models/quantize_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/models/quantize_rules.py -------------------------------------------------------------------------------- /patch_yolov9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/patch_yolov9.sh -------------------------------------------------------------------------------- /qat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/qat.py -------------------------------------------------------------------------------- /scripts/generate_trt_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/scripts/generate_trt_engine.sh -------------------------------------------------------------------------------- /scripts/val_trt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/scripts/val_trt.sh -------------------------------------------------------------------------------- /segment/qat_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/segment/qat_seg.py -------------------------------------------------------------------------------- /val_trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levipereira/yolov9-qat/HEAD/val_trt.py --------------------------------------------------------------------------------