Changeset 7011
- Timestamp:
- 11/17/11 11:46:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationSolutionBase.cs
r6961 r7011 77 77 } 78 78 79 [StorableHook(HookType.AfterDeserialization)] 80 private void AfterDeserialization() { 81 if (!this.ContainsKey(TrainingNormalizedGiniCoefficientResultName)) 82 Add(new Result(TrainingNormalizedGiniCoefficientResultName, "Normalized Gini coefficient of the model on the training partition.", new DoubleValue())); 83 if (!this.ContainsKey(TestNormalizedGiniCoefficientResultName)) 84 Add(new Result(TestNormalizedGiniCoefficientResultName, "Normalized Gini coefficient of the model on the test partition.", new DoubleValue())); 85 } 86 79 87 protected void CalculateResults() { 80 88 double[] estimatedTrainingClassValues = EstimatedTrainingClassValues.ToArray(); // cache values
Note: See TracChangeset
for help on using the changeset viewer.