de.edux.ml.decisiontree.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib Show documentation
Show all versions of lib Show documentation
Educational library for machine learning challenges
The newest version!
package de.edux.ml.decisiontree;
class Node {
double[][] data;
double value;
int splitFeature;
Node left;
Node right;
boolean isLeaf;
Node(double[][] data) {
this.data = data;
isLeaf = false;
}
}