├── README.md ├── aimbotTensorflow.py ├── assets ├── aimbotOnly.py └── yolov3_tf2 │ ├── batch_norm.py │ ├── dataset.py │ ├── models.py │ └── utils.py ├── example ├── showcase.gif └── textDemo.jpg ├── main.py ├── model ├── config.cfg └── model.weights └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/README.md -------------------------------------------------------------------------------- /aimbotTensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/aimbotTensorflow.py -------------------------------------------------------------------------------- /assets/aimbotOnly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/assets/aimbotOnly.py -------------------------------------------------------------------------------- /assets/yolov3_tf2/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/assets/yolov3_tf2/batch_norm.py -------------------------------------------------------------------------------- /assets/yolov3_tf2/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/assets/yolov3_tf2/dataset.py -------------------------------------------------------------------------------- /assets/yolov3_tf2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/assets/yolov3_tf2/models.py -------------------------------------------------------------------------------- /assets/yolov3_tf2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/assets/yolov3_tf2/utils.py -------------------------------------------------------------------------------- /example/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/example/showcase.gif -------------------------------------------------------------------------------- /example/textDemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/example/textDemo.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/main.py -------------------------------------------------------------------------------- /model/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/model/config.cfg -------------------------------------------------------------------------------- /model/model.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/model/model.weights -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofeksadlo/CSGO-Aimbot-CNN/HEAD/requirements.txt --------------------------------------------------------------------------------