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
Maximize AUC
I recognize that this is a general question, but I am seeking some general guidance on approaches to consider to improve the AUC of a model. The data set I have is student data, and I need to develop a model that will predict the outcome of a student (successful/not successful). The results will be assessed by the AUC (yes, this is a course assignment). I have tried many models and many ensemble models, but am still falling short of the AUC that is set by the professor.
Tagged:
0
Best Answers
-
sara20 Member Posts: 110 Unicorn@pb42,
Hello
AUC is an abbrevation for area under the curve. It is used in classification analysis in order to determine which of the used models predicts the classes best.
Also you can use this video.
https://academy.rapidminer.com/courses/performance-auc-demo
I hope this helps
Sara5 -
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornHi!
There are many ways to get better models (which will lead to a higher AUC).
Some approaches:
- Attribute selection (remove irrelevant or noisy attributes)
- Attribute generation (sometimes the relation between attributes, their product or division or difference are also relevant indicators that help the model make better decisions)
- Downsampling the majority class if you have imbalances in the data, or weighting the minority class
- Model parameter optimization
Search for these techniques in the Academy, there are videos for all of them.
Regards,
Balázs6