├── .gitignore ├── LICENSE ├── Preprocessing the data.md ├── README.md ├── Training the AI.md ├── data_handler.py ├── demo.py ├── predict.py ├── rename_images.py ├── start_tensorboard.bat └── training_32x32.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/LICENSE -------------------------------------------------------------------------------- /Preprocessing the data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/Preprocessing the data.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/README.md -------------------------------------------------------------------------------- /Training the AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/Training the AI.md -------------------------------------------------------------------------------- /data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/data_handler.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/demo.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/predict.py -------------------------------------------------------------------------------- /rename_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/rename_images.py -------------------------------------------------------------------------------- /start_tensorboard.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/start_tensorboard.bat -------------------------------------------------------------------------------- /training_32x32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frereit/TensorflowHandwritingRecognition/HEAD/training_32x32.py --------------------------------------------------------------------------------