I\'m new to scikit-learn, and currently studying Naïve Bayes (Multinomial). Right now, I\'m working on vectorizing text from sklearn.feature_extraction.text, and for some reason
This is because capital letter detection is by default turned off lowercase=True in CountVectorizer
lowercase=True
Use
vectorizer_train = CountVectorizer(min_df=0, lowercase=False)