For text classification using SVM, the key metrics are Precision, Recall, and F1-score. This is because text data often has imbalanced classes (some categories appear more than others). Accuracy alone can be misleading if one class dominates.
Precision tells us how many predicted texts for a category are actually correct. Recall tells us how many texts of that category the model found out of all that exist. F1-score balances both, giving a single number to compare models.