├── .gitattributes ├── LICENSE ├── MNIST ├── MNIST_Converted_Testing.zip ├── MNIST_Converted_Training.zip ├── README.md ├── convertMNIST.py ├── test_data.csv └── training_data.csv └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/LICENSE -------------------------------------------------------------------------------- /MNIST/MNIST_Converted_Testing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/MNIST/MNIST_Converted_Testing.zip -------------------------------------------------------------------------------- /MNIST/MNIST_Converted_Training.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/MNIST/MNIST_Converted_Training.zip -------------------------------------------------------------------------------- /MNIST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/MNIST/README.md -------------------------------------------------------------------------------- /MNIST/convertMNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/MNIST/convertMNIST.py -------------------------------------------------------------------------------- /MNIST/test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/MNIST/test_data.csv -------------------------------------------------------------------------------- /MNIST/training_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/MNIST/training_data.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmoroney/synthetic_datasets/HEAD/README.md --------------------------------------------------------------------------------