[8409] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17193] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8409] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System.Collections.Generic;
|
---|
[8935] | 23 | using HeuristicLab.Common;
|
---|
[10469] | 24 | using HeuristicLab.Core;
|
---|
[16677] | 25 | using HEAL.Attic;
|
---|
[8409] | 26 |
|
---|
| 27 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
|
---|
[16677] | 28 | [StorableType("927C21BD-8913-406F-ADEA-DA4FED3FE4A2")]
|
---|
[10469] | 29 | [Item("SymbolicRegressionSolutionImpactValuesCalculator", "Calculate symbolic expression tree node impact values for regression problems.")]
|
---|
[8409] | 30 | public class SymbolicRegressionSolutionImpactValuesCalculator : SymbolicDataAnalysisSolutionImpactValuesCalculator {
|
---|
[10469] | 31 | public SymbolicRegressionSolutionImpactValuesCalculator() { }
|
---|
| 32 | protected SymbolicRegressionSolutionImpactValuesCalculator(SymbolicRegressionSolutionImpactValuesCalculator original, Cloner cloner)
|
---|
| 33 | : base(original, cloner) { }
|
---|
| 34 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 35 | return new SymbolicRegressionSolutionImpactValuesCalculator(this, cloner);
|
---|
| 36 | }
|
---|
| 37 | [StorableConstructor]
|
---|
[16677] | 38 | protected SymbolicRegressionSolutionImpactValuesCalculator(StorableConstructorFlag _) : base(_) { }
|
---|
[8946] | 39 |
|
---|
[15371] | 40 | protected override double CalculateQualityForImpacts(ISymbolicDataAnalysisModel model, IDataAnalysisProblemData problemData, IEnumerable<int> rows) {
|
---|
[8946] | 41 | var regressionModel = (ISymbolicRegressionModel)model;
|
---|
| 42 | var regressionProblemData = (IRegressionProblemData)problemData;
|
---|
[15371] | 43 | var estimatedValues = regressionModel.GetEstimatedValues(problemData.Dataset, rows); // also bounds the values
|
---|
| 44 | var targetValues = problemData.Dataset.GetDoubleValues(regressionProblemData.TargetVariable, rows);
|
---|
[12720] | 45 | OnlineCalculatorError errorState;
|
---|
| 46 | var r = OnlinePearsonsRCalculator.Calculate(targetValues, estimatedValues, out errorState);
|
---|
| 47 | var quality = r * r;
|
---|
| 48 | if (errorState != OnlineCalculatorError.None) return double.NaN;
|
---|
| 49 | return quality;
|
---|
| 50 | }
|
---|
[8409] | 51 | }
|
---|
| 52 | }
|
---|