├── .gitignore ├── LICENSE.txt ├── README.md ├── data └── .keep ├── play.py ├── record.py ├── requirements.txt ├── samples └── .keep ├── screenshots ├── luigi_raceway.png └── record_setup.png ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/README.md -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/play.py -------------------------------------------------------------------------------- /record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/record.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/luigi_raceway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/screenshots/luigi_raceway.png -------------------------------------------------------------------------------- /screenshots/record_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/screenshots/record_setup.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhughes27/TensorKart/HEAD/utils.py --------------------------------------------------------------------------------