def auc_score_(solution, prediction): auc = metrics.roc_auc_score(solution, prediction, average=None) return mvmean(auc) ### SOME I/O functions