def process()

in code/preprocessing.py [0:0]


def process(k):
    """Performs preprocessing by splitting the datasets into k folds.
    """
    # Downloads Iris dataset from sklearn
    X, y = datasets.load_iris(return_X_y=True)
    save_all_datasets(X,y)
    save_kfold_datasets(X,y,k)