Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SymbolicClassificationSolutionImpactValuesCalculator.cs @ 17115

Last change on this file since 17115 was 16565, checked in by gkronber, 6 years ago

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

File size: 2.8 KB
RevLine 
[8935]1#region License Information
2/* HeuristicLab
[16565]3 * Copyright (C) 2002-2019 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;
[10469]24using HeuristicLab.Core;
[16565]25using HEAL.Attic;
[8409]26
27namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification {
[16565]28  [StorableType("54D82779-7A37-43E4-AFD6-0C3E8D24F6EE")]
[10469]29  [Item("SymbolicClassificationSolutionImpactValuesCalculator", "Calculate symbolic expression tree node impact values for classification problems.")]
[8946]30  public class SymbolicClassificationSolutionImpactValuesCalculator : SymbolicDataAnalysisSolutionImpactValuesCalculator {
[10469]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]
[16565]38    protected SymbolicClassificationSolutionImpactValuesCalculator(StorableConstructorFlag _) : base(_) { }
[10469]39
[15371]40    protected override double CalculateQualityForImpacts(ISymbolicDataAnalysisModel model, IDataAnalysisProblemData problemData, IEnumerable<int> rows) {
[8946]41      var classificationModel = (ISymbolicClassificationModel)model;
42      var classificationProblemData = (IClassificationProblemData)problemData;
[12720]43      OnlineCalculatorError errorState;
44      var dataset = problemData.Dataset;
[15871]45      classificationModel.RecalculateModelParameters(classificationProblemData, rows);
[15371]46      var targetClassValues = dataset.GetDoubleValues(classificationProblemData.TargetVariable, rows);
47      var originalClassValues = classificationModel.GetEstimatedClassValues(dataset, rows);
[12720]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.