For sentiment analysis that understands sarcasm and negation, Precision and Recall are very important.
Precision tells us how many of the predicted positive or negative sentiments are actually correct. This is important because sarcasm can trick the model into wrong predictions.
Recall tells us how many of the true positive or negative sentiments the model found. This matters because negation can hide the real sentiment, so missing those is bad.
F1 score balances precision and recall, giving a single number to check overall quality.
Accuracy alone can be misleading because sarcastic or negated sentences are often rare but important.