Changeset 12311
- Timestamp:
- 04/14/15 14:32:43 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SensitivityEvaluator/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveWeightedPerformanceMeasuresEvaluator.cs
r12302 r12311 102 102 IEnumerable<int> rows, bool applyLinearScaling, ISymbolicClassificationModelCreator modelCreator, double normalizedMeanSquaredErrorWeightingFactor, double falseNegativeRateWeightingFactor, double falsePositiveRateWeightingFactor) { 103 103 IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows); 104 var targetClassValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows) .ToArray();104 var targetClassValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows); 105 105 var boundedEstimatedValues = estimatedValues.LimitToRange(lowerEstimationLimit, upperEstimationLimit).ToArray(); 106 106 OnlineCalculatorError errorState;
Note: See TracChangeset
for help on using the changeset viewer.