Hi all,
Does a custom operator necessarily have to be subclassed from
Operator?
My custom operator is an adapted version of the BinominalClassificationPerformance subclassed from
MeasuredPerformance.
The problem is, that it is not visible in RapidMiner after deployment while a second custom operator in the jar (TestOp) is visible.
The included operators.xml should be fine::
<operators>
<operator
name = "EnhancedClassificationPerformance"
class = "com.rapidminer.operator.performance.EnhancedClassificationPerformance"
description = "This operator delivers as output a list of performance values according to a list of selected performance criteria (for binominal classification tasks)."
group = "Validation"/>
<operator
name = "TestOp"
class = "myPackage.TestOp"
description = "Operator is subclassed from Operator and is visible in RapidMiner"
group = "Other"/>
</operators>
Any clue or workaround?
Best regards,
Alex