Uses of Class
org.aksw.limes.core.ml.algorithm.dragon.DecisionTree
-
Packages that use DecisionTree Package Description org.aksw.limes.core.ml.algorithm.dragon org.aksw.limes.core.ml.algorithm.dragon.FitnessFunctions org.aksw.limes.core.ml.algorithm.dragon.Pruning -
-
Uses of DecisionTree in org.aksw.limes.core.ml.algorithm.dragon
Fields in org.aksw.limes.core.ml.algorithm.dragon declared as DecisionTree Modifier and Type Field Description DecisionTreeDragon. rootMethods in org.aksw.limes.core.ml.algorithm.dragon that return DecisionTree Modifier and Type Method Description DecisionTreeDecisionTree. buildTree(int maxDepth)DecisionTreeDecisionTree. clone()protected DecisionTreeDecisionTree. cloneWithoutChild(boolean withoutLeft)protected DecisionTreeDecisionTree. cloneWithoutParent()DecisionTreeDecisionTree. getLeftChild()DecisionTreeDecisionTree. getParent()DecisionTreeDecisionTree. getRightChild()DecisionTreeDecisionTree. prune()Methods in org.aksw.limes.core.ml.algorithm.dragon with parameters of type DecisionTree Modifier and Type Method Description voidDecisionTree. setLeftChild(DecisionTree leftChild)voidDecisionTree. setParent(DecisionTree parent)voidDecisionTree. setRightChild(DecisionTree rightChild) -
Uses of DecisionTree in org.aksw.limes.core.ml.algorithm.dragon.FitnessFunctions
Fields in org.aksw.limes.core.ml.algorithm.dragon.FitnessFunctions declared as DecisionTree Modifier and Type Field Description protected DecisionTreeFitnessFunctionDTL. dtMethods in org.aksw.limes.core.ml.algorithm.dragon.FitnessFunctions with parameters of type DecisionTree Modifier and Type Method Description abstract ExtendedClassifierFitnessFunctionDTL. getBestClassifier(DecisionTree currentNode)ExtendedClassifierGiniIndex. getBestClassifier(DecisionTree currentNode)ExtendedClassifierGlobalFMeasure. getBestClassifier(DecisionTree currentNode)voidFitnessFunctionDTL. setDt(DecisionTree dt)abstract booleanFitnessFunctionDTL. stopCondition(DecisionTree currentNode)booleanGiniIndex. stopCondition(DecisionTree currentNode)booleanGlobalFMeasure. stopCondition(DecisionTree currentNode) -
Uses of DecisionTree in org.aksw.limes.core.ml.algorithm.dragon.Pruning
Methods in org.aksw.limes.core.ml.algorithm.dragon.Pruning that return DecisionTree Modifier and Type Method Description DecisionTreeErrorEstimatePruning. pruneChildNodesIfNecessary(DecisionTree node)DecisionTreeGlobalFMeasurePruning. pruneChildNodesIfNecessary(DecisionTree node)abstract DecisionTreePruningFunctionDTL. pruneChildNodesIfNecessary(DecisionTree node)Decides if all the child nodes or one of them have to be pruned The nodes have to have the appropriate mappings in the classifiers The child nodes of this node are leavesMethods in org.aksw.limes.core.ml.algorithm.dragon.Pruning with parameters of type DecisionTree Modifier and Type Method Description booleanErrorEstimatePruning. pruneChild(DecisionTree node, AMapping parent)DecisionTreeErrorEstimatePruning. pruneChildNodesIfNecessary(DecisionTree node)DecisionTreeGlobalFMeasurePruning. pruneChildNodesIfNecessary(DecisionTree node)abstract DecisionTreePruningFunctionDTL. pruneChildNodesIfNecessary(DecisionTree node)Decides if all the child nodes or one of them have to be pruned The nodes have to have the appropriate mappings in the classifiers The child nodes of this node are leaves
-