├── .gitignore ├── CrashNet_autoencoder.png ├── DirectX_ScanCodes.txt ├── DriveNet.png ├── LICENSE ├── README.md ├── balance_data.py ├── check_data.py ├── combine_data.py ├── convert_npy_to_hdf5.py ├── countdown.py ├── crashnet.py ├── data_stats.json ├── data_stats.png ├── directkeys.py ├── drivenet.py ├── get_data.py ├── getkeys.py ├── getstats.py ├── grabscreen.py ├── lanefinder.py ├── myhistory.py ├── nfs.gif ├── plot_data_stats.py ├── requirements.txt ├── separate_data.py ├── startgame.py ├── test_model.py ├── train_crashnet.py ├── train_model.py ├── training_history_CN.png ├── training_history_CN_graph.png ├── training_history_DN.png ├── training_history_DN_graph.png ├── visualize_data.py ├── visualize_map.py └── visualize_screen.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | data 3 | models 4 | -------------------------------------------------------------------------------- /CrashNet_autoencoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/CrashNet_autoencoder.png -------------------------------------------------------------------------------- /DirectX_ScanCodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/DirectX_ScanCodes.txt -------------------------------------------------------------------------------- /DriveNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/DriveNet.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/README.md -------------------------------------------------------------------------------- /balance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/balance_data.py -------------------------------------------------------------------------------- /check_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/check_data.py -------------------------------------------------------------------------------- /combine_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/combine_data.py -------------------------------------------------------------------------------- /convert_npy_to_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/convert_npy_to_hdf5.py -------------------------------------------------------------------------------- /countdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/countdown.py -------------------------------------------------------------------------------- /crashnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/crashnet.py -------------------------------------------------------------------------------- /data_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/data_stats.json -------------------------------------------------------------------------------- /data_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/data_stats.png -------------------------------------------------------------------------------- /directkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/directkeys.py -------------------------------------------------------------------------------- /drivenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/drivenet.py -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/get_data.py -------------------------------------------------------------------------------- /getkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/getkeys.py -------------------------------------------------------------------------------- /getstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/getstats.py -------------------------------------------------------------------------------- /grabscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/grabscreen.py -------------------------------------------------------------------------------- /lanefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/lanefinder.py -------------------------------------------------------------------------------- /myhistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/myhistory.py -------------------------------------------------------------------------------- /nfs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/nfs.gif -------------------------------------------------------------------------------- /plot_data_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/plot_data_stats.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/requirements.txt -------------------------------------------------------------------------------- /separate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/separate_data.py -------------------------------------------------------------------------------- /startgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/startgame.py -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/test_model.py -------------------------------------------------------------------------------- /train_crashnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/train_crashnet.py -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/train_model.py -------------------------------------------------------------------------------- /training_history_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/training_history_CN.png -------------------------------------------------------------------------------- /training_history_CN_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/training_history_CN_graph.png -------------------------------------------------------------------------------- /training_history_DN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/training_history_DN.png -------------------------------------------------------------------------------- /training_history_DN_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/training_history_DN_graph.png -------------------------------------------------------------------------------- /visualize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/visualize_data.py -------------------------------------------------------------------------------- /visualize_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/visualize_map.py -------------------------------------------------------------------------------- /visualize_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gautam-J/Self-Driving-Car/HEAD/visualize_screen.py --------------------------------------------------------------------------------