├── .github └── workflows │ └── manual.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── traffic-sign-classification-with-keras-solution.ipynb └── traffic-sign-classification-with-keras.ipynb /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-Keras-Lab/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | train.p 2 | test.p 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-Keras-Lab/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-Keras-Lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-Keras-Lab/HEAD/README.md -------------------------------------------------------------------------------- /traffic-sign-classification-with-keras-solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-Keras-Lab/HEAD/traffic-sign-classification-with-keras-solution.ipynb -------------------------------------------------------------------------------- /traffic-sign-classification-with-keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-Keras-Lab/HEAD/traffic-sign-classification-with-keras.ipynb --------------------------------------------------------------------------------