Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SymbolicClassificationSolutionImpactValuesCalculator.cs

Last change on this file was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 2.8 KB
RevLine 
[8935]1#region License Information
2/* HeuristicLab
[17181]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[8935]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
22using System.Collections.Generic;
[8409]23using HeuristicLab.Common;
[11145]24using HeuristicLab.Core;
[17097]25using HEAL.Attic;
[8409]26
27namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification {
[17097]28  [StorableType("54D82779-7A37-43E4-AFD6-0C3E8D24F6EE")]
[11145]29  [Item("SymbolicClassificationSolutionImpactValuesCalculator", "Calculate symbolic expression tree node impact values for classification problems.")]
[8946]30  public class SymbolicClassificationSolutionImpactValuesCalculator : SymbolicDataAnalysisSolutionImpactValuesCalculator {
[11145]31    public SymbolicClassificationSolutionImpactValuesCalculator() { }
32    protected SymbolicClassificationSolutionImpactValuesCalculator(SymbolicClassificationSolutionImpactValuesCalculator original, Cloner cloner)
33      : base(original, cloner) { }
34    public override IDeepCloneable Clone(Cloner cloner) {
35      return new SymbolicClassificationSolutionImpactValuesCalculator(this, cloner);
36    }
37    [StorableConstructor]
[17097]38    protected SymbolicClassificationSolutionImpactValuesCalculator(StorableConstructorFlag _) : base(_) { }
[11145]39
[15406]40    protected override double CalculateQualityForImpacts(ISymbolicDataAnalysisModel model, IDataAnalysisProblemData problemData, IEnumerable<int> rows) {
[8946]41      var classificationModel = (ISymbolicClassificationModel)model;
42      var classificationProblemData = (IClassificationProblemData)problemData;
[12745]43      OnlineCalculatorError errorState;
44      var dataset = problemData.Dataset;
[16434]45      classificationModel.RecalculateModelParameters(classificationProblemData, rows);
[15406]46      var targetClassValues = dataset.GetDoubleValues(classificationProblemData.TargetVariable, rows);
47      var originalClassValues = classificationModel.GetEstimatedClassValues(dataset, rows);
[12745]48      var qualityForImpactsCalculation = OnlineAccuracyCalculator.Calculate(targetClassValues, originalClassValues, out errorState);
49      if (errorState != OnlineCalculatorError.None) qualityForImpactsCalculation = 0.0;
50      return qualityForImpactsCalculation;
51    }
[8409]52  }
53}
Note: See TracBrowser for help on using the repository browser.