Build a text report showing the main classification metrics, including the precision and recall, f1-score (the harmonic mean of precision and recall) and support (the number of observations of that class in the training set).
Example from sklearn docs:
from sklearn.metrics import classification_re...