sin_cluster_data_label.replace({False:0,True:1},inplace=True)#convertion of boolean by integers for the features set (necessary for newest numpy versions)
# Creation of train and test sets for the dataset with cluster (same steps)
datasets=["Dropout_1"]#select the dataset to train on
filtering=["FSS","noFSS"]#select whether the dataset has been through the filtering step or not
scorings={'f1':make_scorer(f1_score),'negative_recall':negative_recall_scorer,'recall':make_scorer(recall_score),'precision':make_scorer(precision_score),'TN':TN_scorer,'FN':FN_scorer,'FP':FP_scorer,'TP':TP_scorer}#scorings to be used for model evaluation
resample=SMOTETomek()#the method used to balance the output classes
cv=StratifiedKFold(n_splits=10,shuffle=True,random_state=1)#the cross-validation protocole used