gitextract_66agq4x4/ ├── LICENSE ├── README.md ├── __init__.py ├── models/ │ └── v8/ │ ├── yolov8l.yaml │ ├── yolov8m.yaml │ ├── yolov8n.yaml │ ├── yolov8s.yaml │ ├── yolov8x.yaml │ └── yolov8x6.yaml ├── nn/ │ ├── __init__.py │ ├── autobackend.py │ ├── modules.py │ └── tasks.py ├── requirements.txt └── yolo/ ├── cli.py ├── configs/ │ ├── __init__.py │ ├── default.yaml │ └── hydra_patch.py ├── data/ │ ├── __init__.py │ ├── augment.py │ ├── base.py │ ├── build.py │ ├── dataloaders/ │ │ ├── __init__.py │ │ ├── stream_loaders.py │ │ ├── v5augmentations.py │ │ └── v5loader.py │ ├── dataset.py │ ├── dataset_wrappers.py │ ├── datasets/ │ │ ├── Argoverse.yaml │ │ ├── GlobalWheat2020.yaml │ │ ├── ImageNet.yaml │ │ ├── Objects365.yaml │ │ ├── SKU-110K.yaml │ │ ├── VOC.yaml │ │ ├── VisDrone.yaml │ │ ├── coco.yaml │ │ ├── coco128-seg.yaml │ │ ├── coco128.yaml │ │ └── xView.yaml │ ├── scripts/ │ │ ├── download_weights.sh │ │ ├── get_coco.sh │ │ ├── get_coco128.sh │ │ └── get_imagenet.sh │ └── utils.py ├── engine/ │ ├── __init__.py │ ├── exporter.py │ ├── model.py │ ├── predictor.py │ ├── sort.py │ ├── trainer.py │ └── validator.py ├── utils/ │ ├── __init__.py │ ├── autobatch.py │ ├── callbacks/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── clearml.py │ │ ├── comet.py │ │ ├── hub.py │ │ └── tensorboard.py │ ├── checks.py │ ├── dist.py │ ├── downloads.py │ ├── files.py │ ├── instance.py │ ├── loss.py │ ├── metrics.py │ ├── ops.py │ ├── plotting.py │ ├── tal.py │ └── torch_utils.py └── v8/ ├── __init__.py └── detect/ ├── __init__.py ├── detect_and_trk.py ├── predict.py ├── sort.py ├── train.py └── val.py