I need to classify text and i am using Text blob python module to achieve it.I can use either Naive Bayes classifier/Decision tree. I am concern about the below mentioned points.
1) I Need to classify sentences as argument/ Not an argument. I am using two classifiers and training the model using apt data sets. My question is all about do i need to train the model with only keywords ? or i can train the data set with all possible argument and non argument sample sentences? Which would be the best approach in terms of text classification accuracy and time to retrieve?
2) Since the classification would be either argument/not an argument, which classifier would fetch exact results? It is Naive Bayes /Decision tree/Positive Naive bayes?
Thanks in advance.