An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Hi, I created a process (5.2) with a simple validation operator and I'm trying to generate a roc chart only for the test set without success. What should I do? Any help will be highly appreciated. Regards, Carlos
I am assuming that you use a Performance operator inside of the testing subprocess of the Simple Validation operator and you problem is actually binominal / binary. Then the delivered performance object will automatically contain also the ROC plot (select "AUC" in the visualization of the performance) which has been calculated on the testing data only.
Things become more difficult if you want to show a Lift chart instead of the ROC curve. Since the Simple Validation can only deliver performance vectors to the outside, you have to use a pair of the operators Remember and Recall. There is an example for this in the sample repository delivered with RapidMiner under //Samples/processes/03_Validation/14_LiftChart. Or here is directly the XML for this process:
I am assuming that you use a Performance operator inside of the testing subprocess of the Simple Validation operator and you problem is actually binominal / binary. Then the delivered performance object will automatically contain also the ROC plot (select "AUC" in the visualization of the performance) which has been calculated on the testing data only.
Here is a process:
Things become more difficult if you want to show a Lift chart instead of the ROC curve. Since the Simple Validation can only deliver performance vectors to the outside, you have to use a pair of the operators Remember and Recall. There is an example for this in the sample repository delivered with RapidMiner under //Samples/processes/03_Validation/14_LiftChart. Or here is directly the XML for this process:
Hope that helps,
Ingo