Changed printing the message about the data augmentation.
Have put it inside of the if condition, added notification when no augmentation has been required.
# print("***Data augmentation.***\n")
# data augmentation or not
if augmentation == True:
canonical = False
rotation = True
else:
canonical = True
rotation = False
->
# data augmentation or not
if augmentation == True:
print("***Data augmentation.***\n")
canonical = False
rotation = True
else:
print("***No data augmentation has been required.***\n")
canonical = True
rotation = False
Changed printing the message about the data augmentation. Have put it inside of the if condition, added notification when no augmentation has been required.
->