Uses of Class
de.jungblut.classification.tree.AbstractTreeNode
-
Packages that use AbstractTreeNode Package Description de.jungblut.classification.tree -
-
Uses of AbstractTreeNode in de.jungblut.classification.tree
Subclasses of AbstractTreeNode in de.jungblut.classification.tree Modifier and Type Class Description classLeafNodeclassNominalNodeclassNumericalNodeMethods in de.jungblut.classification.tree that return AbstractTreeNode Modifier and Type Method Description static AbstractTreeNodeTreeCompiler. compileAndLoad(java.lang.String name, AbstractTreeNode node)Compiles the given node and directly loads it.static AbstractTreeNodeTreeCompiler. load(java.lang.String name, byte[] byteCode)Loads the given tree node via its name and bytecode.static AbstractTreeNodeAbstractTreeNode. read(java.io.DataInput in)Methods in de.jungblut.classification.tree with parameters of type AbstractTreeNode Modifier and Type Method Description static AbstractTreeNodeTreeCompiler. compileAndLoad(java.lang.String name, AbstractTreeNode node)Compiles the given node and directly loads it.static byte[]TreeCompiler. compileNode(java.lang.String name, AbstractTreeNode root)Compiles the given tree node and name into a class.Constructors in de.jungblut.classification.tree with parameters of type AbstractTreeNode Constructor Description NumericalNode(int splitAttributeIndex, double splitAttributeValue, AbstractTreeNode lower, AbstractTreeNode higher)
-