Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/11 17:27:00 (13 years ago)
Author:
gkronber
Message:

#1453: changed *RSquaredEvaluators to return 0.0 (worst possible value) if the result returned by the OnlinePearsonsRSquaredEvaluator is double.NaN

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/MultiObjective/SymbolicRegressionMultiObjectivePearsonRSquaredTreeSizeEvaluator.cs

    r5809 r5846  
    5555      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows);
    5656      IEnumerable<double> originalValues = problemData.Dataset.GetEnumeratedVariableValues(problemData.TargetVariable, rows);
    57       try {
    58         double r2 = OnlinePearsonsRSquaredEvaluator.Calculate(originalValues, estimatedValues);
    59         return new double[2] { r2, solution.Length };
    60       }
    61       catch (ArgumentException) {
    62         // if R² cannot be calcualted return worst possible fitness value
    63         return new double[2] { 0.0, solution.Length };
    64       }
     57      double r2 = OnlinePearsonsRSquaredEvaluator.Calculate(estimatedValues, originalValues);
     58      return new double[] { double.IsNaN(r2) ? 0.0 : r2, solution.Length };
    6559    }
    6660
Note: See TracChangeset for help on using the changeset viewer.