All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.edux.ml.decisiontree.Node Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy