The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

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

ilyasismadiilyasismadi Member Posts: 1 Learner I
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, 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

Answers

Sign In or Register to comment.