Exemplo n.º 1
0
 public ID3Node()
 {
     Data      = new ID3Data();
     Neighbors = null;
 }
Exemplo n.º 2
0
 public Likleshoodtable(string filename)
 {
     data = new ID3Data();
     data.Readdata(filename);
     table = new Dictionary <string, Dictionary <string, double[]> >();
 }
Exemplo n.º 3
0
 public ID3Tree(string filename)
 {
     Data = new ID3Data();
     Data.Readdata(filename);
 }