Uses of Class
org.aksw.limes.core.datastrutures.Tree
-
Packages that use Tree Package Description org.aksw.limes.core.datastrutures org.aksw.limes.core.ml.algorithm org.aksw.limes.core.ml.algorithm.wombat -
-
Uses of Tree in org.aksw.limes.core.datastrutures
Methods in org.aksw.limes.core.datastrutures that return Tree Modifier and Type Method Description Tree<T>Tree. getParent()Methods in org.aksw.limes.core.datastrutures that return types with arguments of type Tree Modifier and Type Method Description List<Tree<T>>Tree. getchildren()Set<Tree<T>>Tree. getLeaves()Methods in org.aksw.limes.core.datastrutures with parameters of type Tree Modifier and Type Method Description voidTree. addChild(Tree<T> child)voidTree. removeChild(Tree<T> child)Constructors in org.aksw.limes.core.datastrutures with parameters of type Tree Constructor Description Tree(Tree<T> parent, T value, List<Tree<T>> childrenlist)Constructor parameters in org.aksw.limes.core.datastrutures with type arguments of type Tree Constructor Description Tree(Tree<T> parent, T value, List<Tree<T>> childrenlist) -
Uses of Tree in org.aksw.limes.core.ml.algorithm
Methods in org.aksw.limes.core.ml.algorithm with parameters of type Tree Modifier and Type Method Description protected List<RefinementNode>WombatSimple. getBestKNodes(Tree<RefinementNode> r, int k)protected TreeSet<RefinementNode>WombatSimple. getSortedNodes(Tree<RefinementNode> r, double penaltyWeight, TreeSet<RefinementNode> result)protected voidWombatSimple. updateScores(Tree<RefinementNode> r)update F-Measure of the refinement tree r based on either training data or PFM -
Uses of Tree in org.aksw.limes.core.ml.algorithm.wombat
Methods in org.aksw.limes.core.ml.algorithm.wombat that return Tree Modifier and Type Method Description protected <T extends RefinementNode>
Tree<T>AWombat. getBestNode(Tree<T> root)Get the most promising node as the node with the best F-scoreprotected <T extends RefinementNode>
Tree<T>AWombat. getMostPromisingNode(Tree<T> root)Get the most promising node as the node with the best F-scoreMethods in org.aksw.limes.core.ml.algorithm.wombat with parameters of type Tree Modifier and Type Method Description protected <T extends RefinementNode>
Tree<T>AWombat. getBestNode(Tree<T> root)Get the most promising node as the node with the best F-scoreprotected AMappingAWombat. getMappingOfMetricExpression(String metricExpression, Tree<? extends RefinementNode> root)Looks first for the input metricExpression in the already constructed tree, if found the corresponding mapping is returned.protected <T extends RefinementNode>
Tree<T>AWombat. getMostPromisingNode(Tree<T> root)Get the most promising node as the node with the best F-score
-