Skip to content
Snippets Groups Projects
Commit 124ab38a authored by Baptiste Bauvin's avatar Baptiste Bauvin
Browse files

Minor string combination bug

parent 47b61c37
No related branches found
No related tags found
No related merge requests found
......@@ -750,7 +750,8 @@ def getInterpretBase(classifier, directory, classifier_name, weights,
else:
interpretString += "."
else:
interpretString += ", and the loop was broken because "+break_cause
pass
# interpretString += ", and the loop was broken because "+break_cause
interpretString += "\n\t Selected voters : \n"
interpretString += np.array2string(np.array(classifier.chosen_columns_)[weights_sort])
interpretString += "\n\t Trained in "+str(datetime.timedelta(seconds=classifier.train_time))+" and predicted in "+str(datetime.timedelta(seconds=classifier.predict_time))+"."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment