Exp3 SMS Spam Recognition
The datasets used and the trained model.
pipeline_list = [
('tv', TfidfVectorizer(ngram_range=(1,2), max_df=0.25, token_pattern=r"(?u)\b\w+\b", stop_words=stopwords)),
('mas', MaxAbsScaler()),
('classifier', ComplementNB(alpha=0.25))
]