Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7677


Ignore:
Timestamp:
03/30/12 22:48:32 (12 years ago)
Author:
mkommend
Message:

#1788: Implemente new symbolic regression evaluators.

Location:
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4
Files:
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4.csproj

    r7675 r7677  
    114114    <Compile Include="MultiObjective\SymbolicRegressionMultiObjectiveValidationBestSolutionAnalyzer.cs" />
    115115    <Compile Include="Plugin.cs" />
     116    <Compile Include="SingleObjective\Evaluators\SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator.cs" />
     117    <Compile Include="SingleObjective\Evaluators\SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator.cs" />
    116118    <Compile Include="SingleObjective\Evaluators\SymbolicRegressionConstantOptimizationEvaluator.cs" />
    117119    <Compile Include="SingleObjective\SymbolicRegressionSingleObjectiveOverfittingAnalyzer.cs" />
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/Evaluators/SymbolicRegressionSingleObjectiveEvaluator.cs

    r7672 r7677  
    2020#endregion
    2121
    22 
     22using System;
     23using System.Collections.Generic;
    2324using HeuristicLab.Common;
    2425using HeuristicLab.Core;
     
    5455      }
    5556    }
     57
     58    [ThreadStatic]
     59    private static double[] cache;
     60
     61    protected static void CalculateWithScaling(IEnumerable<double> targetValues, IEnumerable<double> estimatedValues, IOnlineCalculator calculator, int maxRows) {
     62      if (cache == null || cache.GetLength(0) < maxRows) {
     63        cache = new double[maxRows];
     64      }
     65
     66      //calculate linear scaling
     67      //the static methods of the calculator could not be used as it performs a check if the enumerators have an equal amount of elements
     68      //this is not true if the cache is used
     69      int i = 0;
     70      var linearScalingCalculator = new OnlineLinearScalingParameterCalculator();
     71      var targetValuesEnumerator = targetValues.GetEnumerator();
     72      var estimatedValuesEnumerator = estimatedValues.GetEnumerator();
     73      while (targetValuesEnumerator.MoveNext() && estimatedValuesEnumerator.MoveNext()) {
     74        double target = targetValuesEnumerator.Current;
     75        double estimated = estimatedValuesEnumerator.Current;
     76        cache[i] = estimated;
     77        linearScalingCalculator.Add(estimated, target);
     78        i++;
     79      }
     80      double alpha = linearScalingCalculator.Alpha;
     81      double beta = linearScalingCalculator.Beta;
     82
     83      //calculate the quality by using the passed online calculator
     84      targetValuesEnumerator = targetValues.GetEnumerator();
     85      i = 0;
     86      while (targetValuesEnumerator.MoveNext()) {
     87        double target = targetValuesEnumerator.Current;
     88        double estimated = cache[i] * beta + alpha;
     89        calculator.Add(target, estimated);
     90        i++;
     91      }
     92    }
    5693  }
    5794}
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/Evaluators/SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator.cs

    r7672 r7677  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    2524using HeuristicLab.Common;
    2625using HeuristicLab.Core;
     
    3029
    3130namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
    32   [Item("Mean squared error Evaluator", "Calculates the mean squared error of a symbolic regression solution.")]
     31  [Item("Maximum absolute error Evaluator", "Calculates the maximum squared error of a symbolic regression solution.")]
    3332  [StorableClass]
    34   public class SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator : SymbolicRegressionSingleObjectiveEvaluator {
     33  public class SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator : SymbolicRegressionSingleObjectiveEvaluator {
    3534    public override bool Maximization { get { return false; } }
    36     [ThreadStatic]
    37     private static double[] estimatedValuesCache;
    38 
    3935    [StorableConstructor]
    40     protected SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(bool deserializing) : base(deserializing) { }
    41     protected SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator original, Cloner cloner)
     36    protected SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator(bool deserializing) : base(deserializing) { }
     37    protected SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator(SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator original, Cloner cloner)
    4238      : base(original, cloner) {
    4339    }
    4440    public override IDeepCloneable Clone(Cloner cloner) {
    45       return new SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(this, cloner);
     41      return new SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator(this, cloner);
    4642    }
    47     public SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator() : base() { }
     43    public SymbolicRegressionSingleObjectiveMaxAbsoluteErrorEvaluator() : base() { }
    4844
    4945    public override IOperation Apply() {
     
    5955    public static double Calculate(ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, ISymbolicExpressionTree solution, double lowerEstimationLimit, double upperEstimationLimit, IRegressionProblemData problemData, IEnumerable<int> rows, bool applyLinearScaling) {
    6056      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows);
    61       IEnumerable<double> originalValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
     57      IEnumerable<double> targetValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
    6258      IEnumerable<double> boundedEstimatedValues = estimatedValues.LimitToRange(lowerEstimationLimit, upperEstimationLimit);
    6359      OnlineCalculatorError errorState;
     
    6561      double mse;
    6662      if (applyLinearScaling) {
    67         //int i = 0;
    68         //int rowCount = rows.Count();
    69         //if (estimatedValuesCache == null) estimatedValuesCache = new double[problemData.Dataset.Rows];
    70         //foreach (var value in boundedEstimatedValues) {
    71         //  estimatedValuesCache[i] = value;
    72         //  i++;
    73         //}
    74 
    75         double alpha, beta;
    76         OnlineLinearScalingParameterCalculator.Calculate(boundedEstimatedValues, originalValues, out alpha, out beta, out errorState);
    77         mse = OnlineMeanSquaredErrorCalculator.Calculate(originalValues, boundedEstimatedValues.Select(value => value * beta + alpha), out errorState);
     63        var maeCalculator = new OnlineMaxAbsoluteErrorCalculator();
     64        CalculateWithScaling(targetValues, boundedEstimatedValues, maeCalculator, problemData.Dataset.Rows);
     65        errorState = maeCalculator.ErrorState;
     66        mse = maeCalculator.MaxAbsoluteError;
    7867      } else
    79         mse = OnlineMeanSquaredErrorCalculator.Calculate(originalValues, boundedEstimatedValues, out errorState);
     68        mse = OnlineMaxAbsoluteErrorCalculator.Calculate(targetValues, boundedEstimatedValues, out errorState);
    8069
    8170      if (errorState != OnlineCalculatorError.None) return Double.NaN;
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/Evaluators/SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator.cs

    r7672 r7677  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    2524using HeuristicLab.Common;
    2625using HeuristicLab.Core;
     
    3029
    3130namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
    32   [Item("Mean squared error Evaluator", "Calculates the mean squared error of a symbolic regression solution.")]
     31  [Item("Mean absolute error Evaluator", "Calculates the mean absolute error of a symbolic regression solution.")]
    3332  [StorableClass]
    34   public class SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator : SymbolicRegressionSingleObjectiveEvaluator {
     33  public class SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator : SymbolicRegressionSingleObjectiveEvaluator {
    3534    public override bool Maximization { get { return false; } }
    36     [ThreadStatic]
    37     private static double[] estimatedValuesCache;
    38 
    3935    [StorableConstructor]
    40     protected SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(bool deserializing) : base(deserializing) { }
    41     protected SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator original, Cloner cloner)
     36    protected SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator(bool deserializing) : base(deserializing) { }
     37    protected SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator(SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator original, Cloner cloner)
    4238      : base(original, cloner) {
    4339    }
    4440    public override IDeepCloneable Clone(Cloner cloner) {
    45       return new SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(this, cloner);
     41      return new SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator(this, cloner);
    4642    }
    47     public SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator() : base() { }
     43    public SymbolicRegressionSingleObjectiveMeanAbsoluteErrorEvaluator() : base() { }
    4844
    4945    public override IOperation Apply() {
     
    5955    public static double Calculate(ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, ISymbolicExpressionTree solution, double lowerEstimationLimit, double upperEstimationLimit, IRegressionProblemData problemData, IEnumerable<int> rows, bool applyLinearScaling) {
    6056      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows);
    61       IEnumerable<double> originalValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
     57      IEnumerable<double> targetValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
    6258      IEnumerable<double> boundedEstimatedValues = estimatedValues.LimitToRange(lowerEstimationLimit, upperEstimationLimit);
    6359      OnlineCalculatorError errorState;
     
    6561      double mse;
    6662      if (applyLinearScaling) {
    67         //int i = 0;
    68         //int rowCount = rows.Count();
    69         //if (estimatedValuesCache == null) estimatedValuesCache = new double[problemData.Dataset.Rows];
    70         //foreach (var value in boundedEstimatedValues) {
    71         //  estimatedValuesCache[i] = value;
    72         //  i++;
    73         //}
    74 
    75         double alpha, beta;
    76         OnlineLinearScalingParameterCalculator.Calculate(boundedEstimatedValues, originalValues, out alpha, out beta, out errorState);
    77         mse = OnlineMeanSquaredErrorCalculator.Calculate(originalValues, boundedEstimatedValues.Select(value => value * beta + alpha), out errorState);
     63        var maeCalculator = new OnlineMeanAbsoluteErrorCalculator();
     64        CalculateWithScaling(targetValues, boundedEstimatedValues, maeCalculator, problemData.Dataset.Rows);
     65        errorState = maeCalculator.ErrorState;
     66        mse = maeCalculator.MeanAbsoluteError;
    7867      } else
    79         mse = OnlineMeanSquaredErrorCalculator.Calculate(originalValues, boundedEstimatedValues, out errorState);
     68        mse = OnlineMeanSquaredErrorCalculator.Calculate(targetValues, boundedEstimatedValues, out errorState);
    8069
    8170      if (errorState != OnlineCalculatorError.None) return Double.NaN;
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/Evaluators/SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator.cs

    r7672 r7677  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    2524using HeuristicLab.Common;
    2625using HeuristicLab.Core;
     
    3433  public class SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator : SymbolicRegressionSingleObjectiveEvaluator {
    3534    public override bool Maximization { get { return false; } }
    36     [ThreadStatic]
    37     private static double[] estimatedValuesCache;
    38 
    3935    [StorableConstructor]
    4036    protected SymbolicRegressionSingleObjectiveMeanSquaredErrorEvaluator(bool deserializing) : base(deserializing) { }
     
    5955    public static double Calculate(ISymbolicDataAnalysisExpressionTreeInterpreter interpreter, ISymbolicExpressionTree solution, double lowerEstimationLimit, double upperEstimationLimit, IRegressionProblemData problemData, IEnumerable<int> rows, bool applyLinearScaling) {
    6056      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, problemData.Dataset, rows);
    61       IEnumerable<double> originalValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
     57      IEnumerable<double> targetValues = problemData.Dataset.GetDoubleValues(problemData.TargetVariable, rows);
    6258      IEnumerable<double> boundedEstimatedValues = estimatedValues.LimitToRange(lowerEstimationLimit, upperEstimationLimit);
    6359      OnlineCalculatorError errorState;
     
    6561      double mse;
    6662      if (applyLinearScaling) {
    67         //int i = 0;
    68         //int rowCount = rows.Count();
    69         //if (estimatedValuesCache == null) estimatedValuesCache = new double[problemData.Dataset.Rows];
    70         //foreach (var value in boundedEstimatedValues) {
    71         //  estimatedValuesCache[i] = value;
    72         //  i++;
    73         //}
    74 
    75         double alpha, beta;
    76         OnlineLinearScalingParameterCalculator.Calculate(boundedEstimatedValues, originalValues, out alpha, out beta, out errorState);
    77         mse = OnlineMeanSquaredErrorCalculator.Calculate(originalValues, boundedEstimatedValues.Select(value => value * beta + alpha), out errorState);
     63        var mseCalculator = new OnlineMeanSquaredErrorCalculator();
     64        CalculateWithScaling(targetValues, boundedEstimatedValues, mseCalculator, problemData.Dataset.Rows);
     65        errorState = mseCalculator.ErrorState;
     66        mse = mseCalculator.MeanSquaredError;
    7867      } else
    79         mse = OnlineMeanSquaredErrorCalculator.Calculate(originalValues, boundedEstimatedValues, out errorState);
     68        mse = OnlineMeanSquaredErrorCalculator.Calculate(targetValues, boundedEstimatedValues, out errorState);
    8069
    8170      if (errorState != OnlineCalculatorError.None) return Double.NaN;
Note: See TracChangeset for help on using the changeset viewer.