How to solve insufficient capabilities where it does not support polynominal attributes

ilyasismadiilyasismadi Member Posts: 1 Newbie
hello, i am new to rapid miner, I'm trying to evaluate sentiment analysis (Neutral, Positive,Negative) but out all model i try only naive bayes worked, others show this error message "insufficient capabilities where it does not support polynomial attributes". why is this happening and what other models i can try?

Best Answer

  • BalazsBaranyBalazsBarany Administrator, Moderator, Employee, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 Unicorn
    Solution Accepted
    Hi!

    Your problem is not specific to text mining. It is a basic distinction between two-class and multi-class classification. 

    Many learning algorithms like logistic regression or support vector machines only support two-class (e. g. yes-no) problems. Here you're trying to predict three classes.

    Naive Bayes, Decision Trees and other tree based methods, Neural Networks support multiple classes, but not all of them are good in text classification.

    Another approach could be changing the label (target attribute) to a numeric score (e. g. -1 for negative, 0 for neutral, 1 for positive), building models that predict this score, and then finding good thresholds for deriving the classes from the numeric prediction.

    Regards,
    Balázs
    ilyasismadi

Answers

Sign In or Register to comment.