Options

Logistic Regression cannot handle polynominal label.

ArsalanTahirArsalanTahir Member Posts: 2 Newbie
Hello All,
I have used logistic regression to resolve citation classification problem but error on my label class (High, Medium, and Low), tried the "nominal to numerical" operator but still face this issue. please, help it's urgent.

Best Answer

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

    Nominal to numerical converts your attributes (the ones that build up the model) to numericals. That's fine.

    However, the concept of logistic regression doesn't allow for predicting multiple classes. What you can do is predicting one class vs. all the others repeatedly and taking the prediction with the highest confidence. 

    There's a meta learner for that, it's called Polynominal by Binominal Classification. You can use it as a wrapper around the actual learner (logistic regression). The operator's help contains a tutorial process so you can see how it's done.

    Regards,
    Balázs
Sign In or Register to comment.