com.pawjaw.classification.crf.lmcbt.trees
Class Node

java.lang.Object
  extended by com.pawjaw.classification.crf.lmcbt.trees.Node

public class Node
extends java.lang.Object


Field Summary
 int[] example_indexes
           
 Node false_child
           
 double output
           
 int split_feature
           
 Node true_child
           
 
Constructor Summary
Node(double output, int[] example_indexes)
           
Node(double output, java.util.List<java.lang.Integer> example_indexes)
           
Node(int[] example_indexes)
           
Node(java.util.List<java.lang.Integer> example_indexes)
           
 
Method Summary
 boolean isLeaf()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

split_feature

public int split_feature

output

public double output

true_child

public Node true_child

false_child

public Node false_child

example_indexes

public int[] example_indexes
Constructor Detail

Node

public Node(java.util.List<java.lang.Integer> example_indexes)

Node

public Node(int[] example_indexes)

Node

public Node(double output,
            java.util.List<java.lang.Integer> example_indexes)

Node

public Node(double output,
            int[] example_indexes)
Method Detail

isLeaf

public boolean isLeaf()