How to use Regression Tree(CART - Variance reduction)
Hello
I am looking for Decision Tree operator for Regression (CART - Variance reduction)
But I can't find it
谁知道从哪里e can i find it ?
I am looking for Decision Tree operator for Regression (CART - Variance reduction)
But I can't find it
谁知道从哪里e can i find it ?
Tagged:
0
Best Answer
-
krim3405 MemberPosts:2Contributor IWhat is the Base algorithm of the Decision Tree in the Rapid Miner?
0
Answers
Did you try the decision tree with "least squares" as a criterion? This is used for regression rapidminer.
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
Hi
Synopsis
This Operator generates a decision tree model, which can be used for classification and regression.Description
A decision tree is a tree like collection of nodes intended to create a decision on values affiliation to a class or an estimate of a numerical target value. Each node represents a splitting rule for one specific Attribute. For classification this rule separates values belonging to different classes, for regression it separates them in order to reduce the error in an optimal way for the selected parametercriterion.
The building of new nodes is repeated until the stopping criteria are met. A prediction for the class label Attribute is determined depending on the majority of Examples which reached this leaf during generation, while an estimation for a numerical value is obtained by averaging the values in a leaf.
This Operator can process ExampleSets containing both nominal and numerical Attributes. The label Attribute must be nominal for classification and numerical for regression.
After generation, the decision tree model can be applied to new Examples using the Apply Model Operator. Each Example follows the branches of the tree in accordance to the splitting rule until a leaf is reached.
To configure the decision tree, please read the documentation on parameters as explained below.
look at this link please:
https://docs.www.turtlecreekpls.com/latest/studio/operators/modeling/predictive/trees/parallel_decision_tree.html
regards
mbs
There is no single base model for decision tree operator in rapid miner, it switches based on your selection of criterion. So my understanding for least squares is a modified version of CART.
@IngoRMor@gmeierany suggestions here?
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
https://github.com/rapidminer/rapidminer-studio/tree/3a2da3e40bbadaf5515e04093867798c27d0654d/src/main/java/com/rapidminer/operator/learner/tree
Scott