Skip to content

Exp3 SMS Spam Recognition

Compare
Choose a tag to compare
@Men1scus Men1scus released this 17 Apr 12:54
· 11 commits to main since this release

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))

]