Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/17/12 13:35:55 (12 years ago)
Author:
gkronber
Message:

#1823 Implemented analyzers to collect Pareto-best solutions on validation and fitness calculation partitions for regression and classification.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisSingleObjectiveTrainingParetoBestSolutionAnalyzer.cs

    r7726 r7734  
    3636  /// An operator that collects the Pareto-best symbolic data analysis solutions for single objective symbolic data analysis problems.
    3737  /// </summary>
    38   [Item("SymbolicDataAnalysisSingleObjectiveTrainingBestSolutionAnalyzer", "An operator that analyzes the training best symbolic data analysis solution for multi objective symbolic data analysis problems.")]
     38  [Item("SymbolicDataAnalysisSingleObjectiveTrainingParetoBestSolutionAnalyzer", "An operator that analyzes the Pareto-best symbolic data analysis solution for single objective symbolic data analysis problems.")]
    3939  [StorableClass]
    4040  public abstract class SymbolicDataAnalysisSingleObjectiveTrainingParetoBestSolutionAnalyzer<T> : SymbolicDataAnalysisSingleObjectiveAnalyzer
     
    4343    private const string TrainingBestSolutionQualitiesParameterName = "Best training solution qualities";
    4444    private const string ComplexityParameterName = "Complexity";
     45
     46    public override bool EnabledByDefault {
     47      get { return false; }
     48    }
    4549
    4650    #region parameter properties
Note: See TracChangeset for help on using the changeset viewer.