Hi,
I'm currently integrating rapidminer in a java application.
I need to know how can I access the parameters in a PerformanceVector.
.
.
.
Operator Performance =
OperatorService.createOperator(BinominalClassificationPerformanceEvaluator.class);
Performance.setParameter("main_criterion", "AUC");
chain1.addOperator(NBmodel);
chain2.addOperator(ModelApplier);
chain2.addOperator(Performance);
FixedSplitValidation.addOperator(chain1);
FixedSplitValidation.addOperator(chain2);
process.getRootOperator().addOperator(inputOperator);
process.getRootOperator().addOperator(FixedSplitValidation);
//double AUC = ...
At the end of the process I would like to save the AUC value in a variable.
Thanks for your time,