├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── csgobot.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── config.toml ├── configurator.py ├── detector_yolov7.py ├── detector_yolov8.py ├── main.py ├── requirements.txt ├── semiauto_dataset_collector.py ├── tools ├── analyze.py ├── classes.txt ├── clear.py ├── fix.py ├── readme.txt ├── rttest.py ├── tftest.py └── uniform.py ├── uutils ├── __init__.py ├── benchmark.py ├── controls │ ├── __init__.py │ ├── keyboard │ │ └── __init__.py │ └── mouse │ │ ├── __init__.py │ │ ├── pyautogui.py │ │ ├── pydirectinput.py │ │ ├── pynput.py │ │ └── win32.py ├── cv2.py ├── fov_mouse.py ├── fps.py ├── grabbers │ ├── __init__.py │ ├── d3dshot.py │ ├── dxcam.py │ ├── dxcamcapture.py │ ├── mss.py │ ├── obs_vc.py │ ├── screengear.py │ └── win32.py ├── nms.py ├── streaming │ ├── __init__.py │ └── client.py ├── time.py ├── torch_utils.py ├── win32.py └── windmouse.py ├── yolov7 ├── .gitignore ├── LICENSE.md ├── README.md ├── cfg │ ├── baseline │ │ ├── r50-csp.yaml │ │ ├── x50-csp.yaml │ │ ├── yolor-csp-x.yaml │ │ ├── yolor-csp.yaml │ │ ├── yolor-d6.yaml │ │ ├── yolor-e6.yaml │ │ ├── yolor-p6.yaml │ │ ├── yolor-w6.yaml │ │ ├── yolov3-spp.yaml │ │ ├── yolov3.yaml │ │ └── yolov4-csp.yaml │ ├── deploy │ │ ├── yolov7-d6.yaml │ │ ├── yolov7-e6.yaml │ │ ├── yolov7-e6e.yaml │ │ ├── yolov7-tiny-silu.yaml │ │ ├── yolov7-tiny.yaml │ │ ├── yolov7-w6.yaml │ │ ├── yolov7.yaml │ │ └── yolov7x.yaml │ └── training │ │ ├── yolov7-d6.yaml │ │ ├── yolov7-e6.yaml │ │ ├── yolov7-e6e.yaml │ │ ├── yolov7-tiny.yaml │ │ ├── yolov7-w6.yaml │ │ ├── yolov7.yaml │ │ └── yolov7x.yaml ├── deploy │ └── triton-inference-server │ │ ├── README.md │ │ ├── boundingbox.py │ │ ├── client.py │ │ ├── labels.py │ │ ├── processing.py │ │ └── render.py ├── detect.py ├── export.py ├── hubconf.py ├── models │ ├── __init__.py │ ├── common.py │ ├── experimental.py │ └── yolo.py ├── paper │ └── yolov7.pdf ├── requirements.txt ├── test.py ├── tools │ ├── YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb │ ├── YOLOv7-Dynamic-Batch-TENSORRT.ipynb │ ├── YOLOv7CoreML.ipynb │ ├── YOLOv7onnx.ipynb │ ├── YOLOv7trt.ipynb │ ├── compare_YOLOv7_vs_YOLOv5m6.ipynb │ ├── compare_YOLOv7_vs_YOLOv5m6_half.ipynb │ ├── compare_YOLOv7_vs_YOLOv5s6.ipynb │ ├── compare_YOLOv7e6_vs_YOLOv5x6.ipynb │ ├── compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb │ ├── instance.ipynb │ ├── keypoint.ipynb │ ├── reparameterization.ipynb │ └── visualization.ipynb ├── train.py ├── train_aux.py └── utils │ ├── __init__.py │ ├── activations.py │ ├── add_nms.py │ ├── autoanchor.py │ ├── aws │ ├── __init__.py │ ├── mime.sh │ ├── resume.py │ └── userdata.sh │ ├── datasets.py │ ├── general.py │ ├── google_app_engine │ ├── Dockerfile │ ├── additional_requirements.txt │ └── app.yaml │ ├── google_utils.py │ ├── loss.py │ ├── metrics.py │ ├── plots.py │ ├── torch_utils.py │ └── wandb_logging │ ├── __init__.py │ ├── log_dataset.py │ └── wandb_utils.py └── yolov8 ├── .gitignore ├── YOLOv8 ├── yolov8m │ └── args.yaml └── yolov8s │ └── args.yaml ├── cs2.yaml ├── cs2_cfg.yaml ├── cs2_yolov8m_640_augmented_v2.pt ├── cs2_yolov8m_640_augmented_v3.pt ├── cs2_yolov8m_640_augmented_v4.pt ├── cs2_yolov8m_640_clean_base.pt ├── cs2_yolov8m_640_clean_base_augmented.pt ├── cs2_yolov8s_640.pt ├── datasets ├── .gitignore ├── Where to get dataset archive.txt └── prepare.py ├── train.py ├── yolov8m.pt ├── yolov8n.pt ├── yolov8s.pt └── yolov8s_csgoV1_640.pt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/csgobot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.idea/csgobot.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/config.toml -------------------------------------------------------------------------------- /configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/configurator.py -------------------------------------------------------------------------------- /detector_yolov7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/detector_yolov7.py -------------------------------------------------------------------------------- /detector_yolov8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/detector_yolov8.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/requirements.txt -------------------------------------------------------------------------------- /semiauto_dataset_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/semiauto_dataset_collector.py -------------------------------------------------------------------------------- /tools/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/tools/analyze.py -------------------------------------------------------------------------------- /tools/classes.txt: -------------------------------------------------------------------------------- 1 | c 2 | ch 3 | t 4 | th -------------------------------------------------------------------------------- /tools/clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/tools/clear.py -------------------------------------------------------------------------------- /tools/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/tools/fix.py -------------------------------------------------------------------------------- /tools/readme.txt: -------------------------------------------------------------------------------- 1 | A simple collection of some useful small python scripts. -------------------------------------------------------------------------------- /tools/rttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/tools/rttest.py -------------------------------------------------------------------------------- /tools/tftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/tools/tftest.py -------------------------------------------------------------------------------- /tools/uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/tools/uniform.py -------------------------------------------------------------------------------- /uutils/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /uutils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/benchmark.py -------------------------------------------------------------------------------- /uutils/controls/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /uutils/controls/keyboard/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /uutils/controls/mouse/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /uutils/controls/mouse/pyautogui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/controls/mouse/pyautogui.py -------------------------------------------------------------------------------- /uutils/controls/mouse/pydirectinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/controls/mouse/pydirectinput.py -------------------------------------------------------------------------------- /uutils/controls/mouse/pynput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/controls/mouse/pynput.py -------------------------------------------------------------------------------- /uutils/controls/mouse/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/controls/mouse/win32.py -------------------------------------------------------------------------------- /uutils/cv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/cv2.py -------------------------------------------------------------------------------- /uutils/fov_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/fov_mouse.py -------------------------------------------------------------------------------- /uutils/fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/fps.py -------------------------------------------------------------------------------- /uutils/grabbers/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /uutils/grabbers/d3dshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/d3dshot.py -------------------------------------------------------------------------------- /uutils/grabbers/dxcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/dxcam.py -------------------------------------------------------------------------------- /uutils/grabbers/dxcamcapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/dxcamcapture.py -------------------------------------------------------------------------------- /uutils/grabbers/mss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/mss.py -------------------------------------------------------------------------------- /uutils/grabbers/obs_vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/obs_vc.py -------------------------------------------------------------------------------- /uutils/grabbers/screengear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/screengear.py -------------------------------------------------------------------------------- /uutils/grabbers/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/grabbers/win32.py -------------------------------------------------------------------------------- /uutils/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/nms.py -------------------------------------------------------------------------------- /uutils/streaming/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /uutils/streaming/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/streaming/client.py -------------------------------------------------------------------------------- /uutils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/time.py -------------------------------------------------------------------------------- /uutils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/torch_utils.py -------------------------------------------------------------------------------- /uutils/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/win32.py -------------------------------------------------------------------------------- /uutils/windmouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/uutils/windmouse.py -------------------------------------------------------------------------------- /yolov7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/.gitignore -------------------------------------------------------------------------------- /yolov7/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/LICENSE.md -------------------------------------------------------------------------------- /yolov7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/README.md -------------------------------------------------------------------------------- /yolov7/cfg/baseline/r50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/r50-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/x50-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/x50-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-csp-x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolor-csp-x.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolor-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolor-d6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolor-e6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolor-p6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolor-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolor-w6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolov3-spp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolov3.yaml -------------------------------------------------------------------------------- /yolov7/cfg/baseline/yolov4-csp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/baseline/yolov4-csp.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7-d6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7-e6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7-e6e.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-tiny-silu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7-tiny-silu.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7-tiny.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7-w6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7.yaml -------------------------------------------------------------------------------- /yolov7/cfg/deploy/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/deploy/yolov7x.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7-d6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7-e6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-e6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7-e6e.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7-tiny.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7-w6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7-w6.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7.yaml -------------------------------------------------------------------------------- /yolov7/cfg/training/yolov7x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/cfg/training/yolov7x.yaml -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/deploy/triton-inference-server/README.md -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/boundingbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/deploy/triton-inference-server/boundingbox.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/deploy/triton-inference-server/client.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/deploy/triton-inference-server/labels.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/deploy/triton-inference-server/processing.py -------------------------------------------------------------------------------- /yolov7/deploy/triton-inference-server/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/deploy/triton-inference-server/render.py -------------------------------------------------------------------------------- /yolov7/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/detect.py -------------------------------------------------------------------------------- /yolov7/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/export.py -------------------------------------------------------------------------------- /yolov7/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/hubconf.py -------------------------------------------------------------------------------- /yolov7/models/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /yolov7/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/models/common.py -------------------------------------------------------------------------------- /yolov7/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/models/experimental.py -------------------------------------------------------------------------------- /yolov7/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/models/yolo.py -------------------------------------------------------------------------------- /yolov7/paper/yolov7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/paper/yolov7.pdf -------------------------------------------------------------------------------- /yolov7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/requirements.txt -------------------------------------------------------------------------------- /yolov7/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/test.py -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/YOLOv7-Dynamic-Batch-ONNXRUNTIME.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7-Dynamic-Batch-TENSORRT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/YOLOv7-Dynamic-Batch-TENSORRT.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7CoreML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/YOLOv7CoreML.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7onnx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/YOLOv7onnx.ipynb -------------------------------------------------------------------------------- /yolov7/tools/YOLOv7trt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/YOLOv7trt.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7_vs_YOLOv5m6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7_vs_YOLOv5m6_half.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/compare_YOLOv7_vs_YOLOv5m6_half.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7_vs_YOLOv5s6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/compare_YOLOv7_vs_YOLOv5s6.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6.ipynb -------------------------------------------------------------------------------- /yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/compare_YOLOv7e6_vs_YOLOv5x6_half.ipynb -------------------------------------------------------------------------------- /yolov7/tools/instance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/instance.ipynb -------------------------------------------------------------------------------- /yolov7/tools/keypoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/keypoint.ipynb -------------------------------------------------------------------------------- /yolov7/tools/reparameterization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/reparameterization.ipynb -------------------------------------------------------------------------------- /yolov7/tools/visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/tools/visualization.ipynb -------------------------------------------------------------------------------- /yolov7/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/train.py -------------------------------------------------------------------------------- /yolov7/train_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/train_aux.py -------------------------------------------------------------------------------- /yolov7/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /yolov7/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/activations.py -------------------------------------------------------------------------------- /yolov7/utils/add_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/add_nms.py -------------------------------------------------------------------------------- /yolov7/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/autoanchor.py -------------------------------------------------------------------------------- /yolov7/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | #init -------------------------------------------------------------------------------- /yolov7/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/aws/mime.sh -------------------------------------------------------------------------------- /yolov7/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/aws/resume.py -------------------------------------------------------------------------------- /yolov7/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/aws/userdata.sh -------------------------------------------------------------------------------- /yolov7/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/datasets.py -------------------------------------------------------------------------------- /yolov7/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/general.py -------------------------------------------------------------------------------- /yolov7/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /yolov7/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /yolov7/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /yolov7/utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/google_utils.py -------------------------------------------------------------------------------- /yolov7/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/loss.py -------------------------------------------------------------------------------- /yolov7/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/metrics.py -------------------------------------------------------------------------------- /yolov7/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/plots.py -------------------------------------------------------------------------------- /yolov7/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/torch_utils.py -------------------------------------------------------------------------------- /yolov7/utils/wandb_logging/__init__.py: -------------------------------------------------------------------------------- 1 | # init -------------------------------------------------------------------------------- /yolov7/utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /yolov7/utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov7/utils/wandb_logging/wandb_utils.py -------------------------------------------------------------------------------- /yolov8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/.gitignore -------------------------------------------------------------------------------- /yolov8/YOLOv8/yolov8m/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/YOLOv8/yolov8m/args.yaml -------------------------------------------------------------------------------- /yolov8/YOLOv8/yolov8s/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/YOLOv8/yolov8s/args.yaml -------------------------------------------------------------------------------- /yolov8/cs2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2.yaml -------------------------------------------------------------------------------- /yolov8/cs2_cfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_cfg.yaml -------------------------------------------------------------------------------- /yolov8/cs2_yolov8m_640_augmented_v2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_yolov8m_640_augmented_v2.pt -------------------------------------------------------------------------------- /yolov8/cs2_yolov8m_640_augmented_v3.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_yolov8m_640_augmented_v3.pt -------------------------------------------------------------------------------- /yolov8/cs2_yolov8m_640_augmented_v4.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_yolov8m_640_augmented_v4.pt -------------------------------------------------------------------------------- /yolov8/cs2_yolov8m_640_clean_base.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_yolov8m_640_clean_base.pt -------------------------------------------------------------------------------- /yolov8/cs2_yolov8m_640_clean_base_augmented.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_yolov8m_640_clean_base_augmented.pt -------------------------------------------------------------------------------- /yolov8/cs2_yolov8s_640.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/cs2_yolov8s_640.pt -------------------------------------------------------------------------------- /yolov8/datasets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/datasets/.gitignore -------------------------------------------------------------------------------- /yolov8/datasets/Where to get dataset archive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/datasets/Where to get dataset archive.txt -------------------------------------------------------------------------------- /yolov8/datasets/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/datasets/prepare.py -------------------------------------------------------------------------------- /yolov8/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/train.py -------------------------------------------------------------------------------- /yolov8/yolov8m.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/yolov8m.pt -------------------------------------------------------------------------------- /yolov8/yolov8n.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/yolov8n.pt -------------------------------------------------------------------------------- /yolov8/yolov8s.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/yolov8s.pt -------------------------------------------------------------------------------- /yolov8/yolov8s_csgoV1_640.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Priler/csgobot/HEAD/yolov8/yolov8s_csgoV1_640.pt --------------------------------------------------------------------------------