├── README.md ├── main.py ├── main.sh ├── nets └── nn.py ├── utils ├── args.yaml ├── dataset.py └── util.py └── weights ├── best.ts ├── last.ts ├── step.csv └── v8_n.pth /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/main.py -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- 1 | GPUS=$1 2 | python3 -m torch.distributed.launch --nproc_per_node=$GPUS main.py ${@:2} -------------------------------------------------------------------------------- /nets/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/nets/nn.py -------------------------------------------------------------------------------- /utils/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/utils/args.yaml -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/utils/util.py -------------------------------------------------------------------------------- /weights/best.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/weights/best.ts -------------------------------------------------------------------------------- /weights/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/weights/last.ts -------------------------------------------------------------------------------- /weights/step.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/weights/step.csv -------------------------------------------------------------------------------- /weights/v8_n.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-qat/HEAD/weights/v8_n.pth --------------------------------------------------------------------------------