Capstone_Project_ML
Capstone_Project_ML copied to clipboard
Building a multi-label classifier for toxic comment classification
Results
1
Capstone_Project_ML issues
Sort by
recently updated
recently updated
newest added
#import required library from sklearn.feature_extraction.text import CountVectorizer #create object supplying our custom stop words count_vector = CountVectorizer(stop_words=stop_words) #fitting it to converts comments into bag of words format tf = count_vector.fit_transform(comments).toarray()...