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
Logistic Regression cannot handle polynominal label.
ArsalanTahir
Member Posts: 2 Learner I
in Help
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.
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.
Tagged:
0
Best Answer
-
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornHi!
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ázs1