cifar2png icon indicating copy to clipboard operation
cifar2png copied to clipboard

Updated common/preprocess.py

Open sadimanna opened this issue 3 years ago • 0 comments

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.

sadimanna avatar Aug 14 '22 12:08 sadimanna