Find more posts tagged with
Sort by:
1 - 10 of
101
Dear Christopher,
i copied it from the source code. It is available at https://github.com/rapidminer/rapidminer-studio/blob/master/src/main/java/com/rapidminer/operator/learner/tree/ParallelDecisionTreeLearner.java . Im a bit unsure where this comment pops up in studio.
~Martin
hello @thatharpandi199 - I would use the normal Decision Tree operator in Studio Core. It is the best by far.
Scott
Sort by:
1 - 1 of
11
The shipped descion tree is actually a own implemtation. I am not sure if it follows any direct implementation, i think it is some mixture, but I am not sure.
If you want to have C4.5 you may have a look on W-J48.
~Martin
Edit: Just looked it up:
* <p>
* This operator learns decision trees from both nominal and numerical data. Decision trees are
* powerful classification methods which often can also easily be understood. This decision tree
* learner works similar to Quinlan's C4.5 or CART.
* </p>
*
* <p>
* The actual type of the tree is determined by the criterion, e.g. using gain_ratio or Gini for
* CART / C4.5.
* </p>
The shipped descion tree is actually a own implemtation. I am not sure if it follows any direct implementation, i think it is some mixture, but I am not sure.
If you want to have C4.5 you may have a look on W-J48.
~Martin
Edit: Just looked it up: