cifar2png
cifar2png copied to clipboard
Updated common/preprocess.py
Subfolders were not getting created using os.system("mkdir -p {}".format(dirpath)) due to wrong syntax
Replaced os.system("mkdir -p {}".format(dirpath)) with os.mkdir("{}".format(dirpath)).
Added a few lines for creating the dataset folder, train and test folders and the class subfolders.