Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5285


Ignore:
Timestamp:
01/11/11 19:20:59 (13 years ago)
Author:
gkronber
Message:

Revert of changeset r5284. #1369

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/Analyzer/TrainingBestSymbolicClassificationSolutionAnalyzer.cs

    r5284 r5285  
    261261    }
    262262
    263     [StorableHook(HookType.AfterDeserialization)]
    264     private void AfterDeserialization() {
    265       if (!Parameters.ContainsKey(BestSolutionAccuracyTrainingParameterName)) {
    266         Parameters.Add(new LookupParameter<DoubleValue>(BestSolutionAccuracyTrainingParameterName, "The accuracy on the training set of the best symbolic classification  solution."));
    267       }
    268       if (!Parameters.ContainsKey(BestSolutionAccuracyTestParameterName)) {
    269         Parameters.Add(new LookupParameter<DoubleValue>(BestSolutionAccuracyTestParameterName, "The accuracy on the test set of the best symbolic classification  solution."));
    270       }
    271       if (Parameters.ContainsKey("DataAnalysisProblemData")) {
    272         Parameters["DataAnalysisProblemData"].Name = ProblemDataParameterName;
    273       }
    274     }
    275 
    276263    public override IOperation Apply() {
    277264      #region find best tree
Note: See TracChangeset for help on using the changeset viewer.