predicted_proba[ind_knn_original_matrix] = self.roc_algorithm.predict_proba(X_DS[ind_knn_classifier])
// Remove from the neighbors and distance matrices the samples that were classified using the KNN
self.neighbors = np.delete(self.neighbors, ind_knn_classifier, axis=0)
self.distances = np.delete(self.distances, ind_knn_classifier, axis=0)
else:
// IH was not considered. So all samples with disagreement are passed down to the DS algorithm
ind_ds_classifier = np.arange(ind_disagreement.size)