ian-flores / toxic_text_classification

0 stars 0 forks source link

Logistic Regression with Count Vectorizer #1

Open ian-flores opened 5 years ago

ian-flores commented 5 years ago

First Approach:

1) Count number of words 2) Train Logistic Regression on this only

Second Approach:

1) Remove Stopwords 2) Count number of words 3) Train LR

Third Approach:

1) Remove Stopwords 2) Count number of words 3) Weight number of words per document with tf-IDF 4) Train LR

ian-flores commented 5 years ago

First Approach:

Second Approach:

Third Approach: