├── LICENSE ├── README.md ├── main.py ├── main.sh ├── nets └── nn.py ├── utils ├── args.yaml ├── dataset.py └── util.py └── weights ├── best.pt ├── last.pt ├── step.csv └── v8_n.pt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/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-human/HEAD/nets/nn.py -------------------------------------------------------------------------------- /utils/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/utils/args.yaml -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/utils/util.py -------------------------------------------------------------------------------- /weights/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/weights/best.pt -------------------------------------------------------------------------------- /weights/last.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/weights/last.pt -------------------------------------------------------------------------------- /weights/step.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/weights/step.csv -------------------------------------------------------------------------------- /weights/v8_n.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jahongir7174/YOLOv8-human/HEAD/weights/v8_n.pt --------------------------------------------------------------------------------