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
Calibration plot
What would be the best way to create Calibration plot for a Deep Learning Prediction model for a binary classifier?
The calibration curve works by sorting the probabilities assigned to the records being predicted by the probability reported by the classifier. It then bins the values, and calculates two things.
Thanks
The calibration curve works by sorting the probabilities assigned to the records being predicted by the probability reported by the classifier. It then bins the values, and calculates two things.
Thanks
0
Best Answer
-
rdesai Employee-RapidMiner, RMResearcher, Member Posts: 15 RM ResearchSure, So we don't have an extra operator for that, but you should be able to create a process to get the data in the right shape and use standard plotting graphs. The probs are being given as the confidence values in the output. You can either
1) Use Generate Attribute to create a process that get's you the data into the right format
2) Since the output contains all probabilities for all class values you can create the plot by using threshold operators to see how balanced the results are from the classifiers.
I hope this helps!!
6
Answers