13  Metrics and scoring

13.1 Sklearn documents

sklearn.metrics

13.2 Classification

13.2.1 Accuracy

  • accuracy(y_true, y_pred)
  • Proportion of exact match prediction of the model
  • As this case, the result showed that with the presence of class immbalance, accuracy score is not useful metric

13.2.2 Confusion matrix

  • In progress