Changeset 12417
- Timestamp:
- 06/09/15 15:56:04 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SensitivityEvaluator/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveWeightedPerformanceMeasuresEvaluator.cs
r12311 r12417 51 51 get { return (IFixedValueParameter<DoubleValue>)Parameters[FalsePositiveRateWeightingFactorParameterName]; } 52 52 } 53 public I LookupParameter<ISymbolicClassificationModelCreator> ModelCreatorParameter {54 get { return (I LookupParameter<ISymbolicClassificationModelCreator>)Parameters[ModelCreatorParameterName]; }53 public IValueLookupParameter<ISymbolicClassificationModelCreator> ModelCreatorParameter { 54 get { return (IValueLookupParameter<ISymbolicClassificationModelCreator>)Parameters[ModelCreatorParameterName]; } 55 55 } 56 56 #endregion … … 86 86 Parameters.Add(new FixedValueParameter<DoubleValue>(FalseNegativeRateWeightingFactorParameterName, "The weighting factor of the false negative rate (1-sensitivity).", new DoubleValue(1))); 87 87 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.")); 89 89 } 90 90
Note: See TracChangeset
for help on using the changeset viewer.