Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12417


Ignore:
Timestamp:
06/09/15 15:56:04 (9 years ago)
Author:
ehopf
Message:

#2361: Changed the type of the ModelCreatorParameter to IValueLookupParameter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SensitivityEvaluator/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveWeightedPerformanceMeasuresEvaluator.cs

    r12311 r12417  
    5151      get { return (IFixedValueParameter<DoubleValue>)Parameters[FalsePositiveRateWeightingFactorParameterName]; }
    5252    }
    53     public ILookupParameter<ISymbolicClassificationModelCreator> ModelCreatorParameter {
    54       get { return (ILookupParameter<ISymbolicClassificationModelCreator>)Parameters[ModelCreatorParameterName]; }
     53    public IValueLookupParameter<ISymbolicClassificationModelCreator> ModelCreatorParameter {
     54      get { return (IValueLookupParameter<ISymbolicClassificationModelCreator>)Parameters[ModelCreatorParameterName]; }
    5555    }
    5656    #endregion
     
    8686      Parameters.Add(new FixedValueParameter<DoubleValue>(FalseNegativeRateWeightingFactorParameterName, "The weighting factor of the false negative rate (1-sensitivity).", new DoubleValue(1)));
    8787      Parameters.Add(new FixedValueParameter<DoubleValue>(FalsePositiveRateWeightingFactorParameterName, "The weighting factor of the false positive rate (1-specificity).", new DoubleValue(1)));
    88       Parameters.Add(new LookupParameter<ISymbolicClassificationModelCreator>(ModelCreatorParameterName, "ModelCreator"));
     88      Parameters.Add(new ValueLookupParameter<ISymbolicClassificationModelCreator>(ModelCreatorParameterName, "The model creator which is used during the evaluations."));
    8989    }
    9090
Note: See TracChangeset for help on using the changeset viewer.