Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/DiscriminantFunctionClassificationSolution.cs @ 6606

Last change on this file since 6606 was 6606, checked in by mkommend, 13 years ago

#1604: Enabled caching of evaluation results in data analysis solutions.

File size: 5.1 KB
RevLine 
[5649]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
[6411]26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[5649]27
28namespace HeuristicLab.Problems.DataAnalysis {
29  /// <summary>
30  /// Represents a classification solution that uses a discriminant function and classification thresholds.
31  /// </summary>
32  [StorableClass]
33  [Item("DiscriminantFunctionClassificationSolution", "Represents a classification solution that uses a discriminant function and classification thresholds.")]
[6589]34  public abstract class DiscriminantFunctionClassificationSolution : DiscriminantFunctionClassificationSolutionBase {
[6606]35    protected readonly Dictionary<int, double> valueEvaluationCache;
36    protected readonly Dictionary<int, double> classValueEvaluationCache;
[5885]37
[5649]38    [StorableConstructor]
[6606]39    protected DiscriminantFunctionClassificationSolution(bool deserializing)
40      : base(deserializing) {
41      valueEvaluationCache = new Dictionary<int, double>();
42      classValueEvaluationCache = new Dictionary<int, double>();
43    }
[5649]44    protected DiscriminantFunctionClassificationSolution(DiscriminantFunctionClassificationSolution original, Cloner cloner)
45      : base(original, cloner) {
[6606]46      valueEvaluationCache = new Dictionary<int, double>(original.valueEvaluationCache);
47      classValueEvaluationCache = new Dictionary<int, double>(original.classValueEvaluationCache);
[5649]48    }
[6589]49    protected DiscriminantFunctionClassificationSolution(IDiscriminantFunctionClassificationModel model, IClassificationProblemData problemData)
[5649]50      : base(model, problemData) {
[6606]51      valueEvaluationCache = new Dictionary<int, double>();
52      classValueEvaluationCache = new Dictionary<int, double>();
53
54      SetAccuracyMaximizingThresholds();
[5649]55    }
56
[6589]57    public override IEnumerable<double> EstimatedClassValues {
58      get { return GetEstimatedClassValues(Enumerable.Range(0, ProblemData.Dataset.Rows)); }
[5736]59    }
[6589]60    public override IEnumerable<double> EstimatedTrainingClassValues {
61      get { return GetEstimatedClassValues(ProblemData.TrainingIndizes); }
[6411]62    }
[6589]63    public override IEnumerable<double> EstimatedTestClassValues {
64      get { return GetEstimatedClassValues(ProblemData.TestIndizes); }
[6411]65    }
66
[6589]67    public override IEnumerable<double> GetEstimatedClassValues(IEnumerable<int> rows) {
[6606]68      var rowsToEvaluate = rows.Except(classValueEvaluationCache.Keys);
69      var rowsEnumerator = rowsToEvaluate.GetEnumerator();
70      var valuesEnumerator = Model.GetEstimatedClassValues(ProblemData.Dataset, rowsToEvaluate).GetEnumerator();
71
72      while (rowsEnumerator.MoveNext() & valuesEnumerator.MoveNext()) {
73        classValueEvaluationCache.Add(rowsEnumerator.Current, valuesEnumerator.Current);
74      }
75
76      return rows.Select(row => classValueEvaluationCache[row]);
[5885]77    }
78
[5736]79
[6589]80    public override IEnumerable<double> EstimatedValues {
[5649]81      get { return GetEstimatedValues(Enumerable.Range(0, ProblemData.Dataset.Rows)); }
82    }
[6589]83    public override IEnumerable<double> EstimatedTrainingValues {
[5649]84      get { return GetEstimatedValues(ProblemData.TrainingIndizes); }
85    }
[6589]86    public override IEnumerable<double> EstimatedTestValues {
[5649]87      get { return GetEstimatedValues(ProblemData.TestIndizes); }
88    }
89
[6589]90    public override IEnumerable<double> GetEstimatedValues(IEnumerable<int> rows) {
[6606]91      var rowsToEvaluate = rows.Except(valueEvaluationCache.Keys);
92      var rowsEnumerator = rowsToEvaluate.GetEnumerator();
93      var valuesEnumerator = Model.GetEstimatedValues(ProblemData.Dataset, rowsToEvaluate).GetEnumerator();
94
95      while (rowsEnumerator.MoveNext() & valuesEnumerator.MoveNext()) {
96        valueEvaluationCache.Add(rowsEnumerator.Current, valuesEnumerator.Current);
97      }
98
99      return rows.Select(row => valueEvaluationCache[row]);
[5649]100    }
[6606]101
102    protected override void OnModelChanged() {
103      valueEvaluationCache.Clear();
104      classValueEvaluationCache.Clear();
105      base.OnModelChanged();
106    }
107    protected override void OnModelThresholdsChanged(System.EventArgs e) {
108      classValueEvaluationCache.Clear();
109      base.OnModelThresholdsChanged(e);
110    }
111    protected override void OnProblemDataChanged() {
112      valueEvaluationCache.Clear();
113      classValueEvaluationCache.Clear();
114      base.OnProblemDataChanged();
115    }
[5649]116  }
117}
Note: See TracBrowser for help on using the repository browser.