def load_cifar10(path=".",
                 normalize=True,
                 contrast_normalize=False,
                 whiten=False):
    cfiar10_dataset = CIFAR10(path=path,
                              normalize=normalize,
                              contrast_normalize=contrast_normalize,
                              whiten=whiten)
    return cfiar10_dataset.load_data()