[Side Project After Work] Big Data Analysis Certification Practical Exam (Type 1, 2, 3)
We guide non-majors and beginners to quickly obtain the Big Data Analysis Certification (Practical Exam)! Keep the theory light and the practice solid—focusing on core points that are guaranteed to appear on the exam through past questions, without the need for complex background knowledge.
5,513 learners
Level Beginner
Course period 12 months

[Multiple classification] Guide to evaluation criteria
Let me introduce you to the multi-classification evaluation index 💪💪💪
You can use the evaluation criteria as required by the problem.
If you don't know, please use the evaluation criteria you know, even if it's a shortcut :)
F1 score
Predict with predict
micro, macro, weighted
from sklearn.metrics import f1_score f1_score(y_true, y_pred, average='macro') # micro, macro, weightedAccuracy (no difference from binary classification)
Predict with predict
from sklearn.metrics import accuracy_score accuracy_score(y_true, y_pred)roc-auc
Predict with predict_proba -> like binary classification, pred[:,1] ❌ Pred as is 👌
ovo, ovr
from sklearn.metrics import roc_auc_score roc_auc_score(y_val, pred, multi_class='ovo') roc_auc_score(y_val, pred, multi_class='ovr')




