🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

"Rules Decision Tree"

User: "kkass"
New Altair Community Member
Updated by Jocelyn
Hi, everyone.
I developed a operator.My operator creates a Decision Tree model for the data1.
 
                //create a model Decision Tree

DecisionTreeLearner evaluator;
try {
evaluator = OperatorService.createOperator(DecisionTreeLearner.class);
} catch (OperatorCreationException e) {
throw new UserError(this, 904, "DecisionTreeLearner operator", e.getMessage());
}

//Modelo data1
Model A = evaluator.learn(data1);


This Model "A" is applied to other data (Data2).And sent to an output port.
               
                ExampleSet result1 = A.apply(Data2)
                exampleSetOutput1.deliver(result1);

In a result1 appears  a column titled "prediction(label)" the result of applying the classification tree for each data.

How I can do to make this column appears in addition to another with the Rules used to classify?

Find more posts tagged with

Comments

No comments on this post.