Ejemplo n.º 1
0
 public IHDR()
 {
     this.samples = new Samples();
     this.testingSamples = new Samples();
     this.tree = new Tree();
     this.labelOutputVectors = new Dictionary<double, Vector>();
 }
Ejemplo n.º 2
0
 public IHDR(SerializationInfo info, StreamingContext context)
 {
     samples = (Samples)info.GetValue("samples", typeof(Samples));
     tree = (Tree)info.GetValue("tree", typeof(Tree));
 }