When using logistic regression to classify text, the key metrics are Precision, Recall, and F1-score. These metrics help us understand how well the model identifies the correct categories.
Precision tells us how many of the texts labeled as positive are actually positive. This is important when false alarms are costly.
Recall tells us how many of the actual positive texts the model found. This matters when missing a positive case is bad.
F1-score balances precision and recall, giving a single number to compare models.
Accuracy alone can be misleading if the text classes are unbalanced (one class much bigger than the other).