├── README.md ├── Yolov8_cs2_csgo_demo.py ├── configuration_files ├── custom_data.yaml └── yolov7-custom.yaml ├── model-results └── csgo_model1_25_epoch │ ├── BoxF1_curve.png │ ├── BoxPR_curve.png │ ├── BoxP_curve.png │ ├── BoxR_curve.png │ ├── args.yaml │ ├── confusion_matrix.png │ ├── confusion_matrix_normalized.png │ ├── labels.jpg │ ├── labels_correlogram.jpg │ ├── results.csv │ ├── results.png │ ├── train_batch0.jpg │ ├── train_batch1.jpg │ ├── train_batch2.jpg │ ├── train_batch645.jpg │ ├── train_batch646.jpg │ ├── train_batch647.jpg │ ├── val_batch0_labels.jpg │ ├── val_batch0_pred.jpg │ ├── val_batch1_labels.jpg │ ├── val_batch1_pred.jpg │ ├── val_batch2_labels.jpg │ ├── val_batch2_pred.jpg │ └── weights │ ├── best.pt │ └── last.pt ├── model-training.ipynb ├── requirements.txt ├── test_images ├── batch.jpg ├── test1.png ├── test2.png ├── test3.png ├── test4.png ├── test5.png └── test6.png └── yolov8_csgo_cs2_model.pt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/README.md -------------------------------------------------------------------------------- /Yolov8_cs2_csgo_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/Yolov8_cs2_csgo_demo.py -------------------------------------------------------------------------------- /configuration_files/custom_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/configuration_files/custom_data.yaml -------------------------------------------------------------------------------- /configuration_files/yolov7-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/configuration_files/yolov7-custom.yaml -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/BoxF1_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/BoxF1_curve.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/BoxPR_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/BoxPR_curve.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/BoxP_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/BoxP_curve.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/BoxR_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/BoxR_curve.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/args.yaml -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/confusion_matrix.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/confusion_matrix_normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/confusion_matrix_normalized.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/labels.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/labels_correlogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/labels_correlogram.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/results.csv -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/results.png -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/train_batch0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/train_batch0.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/train_batch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/train_batch1.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/train_batch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/train_batch2.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/train_batch645.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/train_batch645.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/train_batch646.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/train_batch646.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/train_batch647.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/train_batch647.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/val_batch0_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/val_batch0_labels.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/val_batch0_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/val_batch0_pred.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/val_batch1_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/val_batch1_labels.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/val_batch1_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/val_batch1_pred.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/val_batch2_labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/val_batch2_labels.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/val_batch2_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/val_batch2_pred.jpg -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/weights/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/weights/best.pt -------------------------------------------------------------------------------- /model-results/csgo_model1_25_epoch/weights/last.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-results/csgo_model1_25_epoch/weights/last.pt -------------------------------------------------------------------------------- /model-training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/model-training.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_images/batch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/batch.jpg -------------------------------------------------------------------------------- /test_images/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/test1.png -------------------------------------------------------------------------------- /test_images/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/test2.png -------------------------------------------------------------------------------- /test_images/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/test3.png -------------------------------------------------------------------------------- /test_images/test4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/test4.png -------------------------------------------------------------------------------- /test_images/test5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/test5.png -------------------------------------------------------------------------------- /test_images/test6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/test_images/test6.png -------------------------------------------------------------------------------- /yolov8_csgo_cs2_model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siromermer/CS2-CSGO-Yolov8-Yolov7-ObjectDetection/HEAD/yolov8_csgo_cs2_model.pt --------------------------------------------------------------------------------