When using Bag of Words with CountVectorizer, the main goal is to convert text into numbers for models. The quality of this conversion affects how well the model learns. Metrics like accuracy, precision, and recall matter because they show how well the model understands the text features created by CountVectorizer.
For example, if you use Bag of Words for spam detection, precision tells you how many emails marked as spam really are spam, and recall tells you how many spam emails you caught. These metrics help check if the word counts are helping the model make good decisions.