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