Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/MultinomialLogitClassification.cs @ 14685

Last change on this file since 14685 was 14523, checked in by mkommend, 7 years ago

#2524:

  • Renamed pausable to SupportsPause
  • Changed SupportsPause field to abstract property that has to be implemented
  • Stored initialization flag in BasicAlgorithm
  • Changed CancellationToken access to use the according property
  • Adapted HillClimber to new pausing mechanism
  • Disable pause for PPP, because it does not work correctly
  • Derived FixedDataAnalysisAlgorithm from BasicAlgorithm
  • Changed base class of all data analysis algorithm from BasicAlgorithm to FixedDataAnalysisAlgorithm
File size: 5.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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;
23using System.Collections.Generic;
24using System.Linq;
25using System.Threading;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Optimization;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31using HeuristicLab.Problems.DataAnalysis;
32
33namespace HeuristicLab.Algorithms.DataAnalysis {
34  /// <summary>
35  /// Multinomial logit regression data analysis algorithm.
36  /// </summary>
37  [Item("Multinomial Logit Classification (MNL)", "Multinomial logit classification data analysis algorithm (wrapper for ALGLIB).")]
38  [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 180)]
39  [StorableClass]
40  public sealed class MultiNomialLogitClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> {
41    private const string LogitClassificationModelResultName = "Logit classification solution";
42
43    [StorableConstructor]
44    private MultiNomialLogitClassification(bool deserializing) : base(deserializing) { }
45    private MultiNomialLogitClassification(MultiNomialLogitClassification original, Cloner cloner)
46      : base(original, cloner) {
47    }
48    public MultiNomialLogitClassification()
49      : base() {
50      Problem = new ClassificationProblem();
51    }
52    [StorableHook(HookType.AfterDeserialization)]
53    private void AfterDeserialization() { }
54
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new MultiNomialLogitClassification(this, cloner);
57    }
58
59    #region logit classification
60    protected override void Run(CancellationToken cancellationToken) {
61      double rmsError, relClassError;
62      var solution = CreateLogitClassificationSolution(Problem.ProblemData, out rmsError, out relClassError);
63      Results.Add(new Result(LogitClassificationModelResultName, "The logit classification solution.", solution));
64      Results.Add(new Result("Root mean squared error", "The root of the mean of squared errors of the logit regression solution on the training set.", new DoubleValue(rmsError)));
65      Results.Add(new Result("Relative classification error", "Relative classification error on the training set (percentage of misclassified cases).", new PercentValue(relClassError)));
66    }
67
68    public static IClassificationSolution CreateLogitClassificationSolution(IClassificationProblemData problemData, out double rmsError, out double relClassError) {
69      var dataset = problemData.Dataset;
70      string targetVariable = problemData.TargetVariable;
71      IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
72      IEnumerable<int> rows = problemData.TrainingIndices;
73      double[,] inputMatrix = AlglibUtil.PrepareInputMatrix(dataset, allowedInputVariables.Concat(new string[] { targetVariable }), rows);
74      if (inputMatrix.Cast<double>().Any(x => double.IsNaN(x) || double.IsInfinity(x)))
75        throw new NotSupportedException("Multinomial logit classification does not support NaN or infinity values in the input dataset.");
76
77      alglib.logitmodel lm = new alglib.logitmodel();
78      alglib.mnlreport rep = new alglib.mnlreport();
79      int nRows = inputMatrix.GetLength(0);
80      int nFeatures = inputMatrix.GetLength(1) - 1;
81      double[] classValues = dataset.GetDoubleValues(targetVariable).Distinct().OrderBy(x => x).ToArray();
82      int nClasses = classValues.Count();
83      // map original class values to values [0..nClasses-1]
84      Dictionary<double, double> classIndices = new Dictionary<double, double>();
85      for (int i = 0; i < nClasses; i++) {
86        classIndices[classValues[i]] = i;
87      }
88      for (int row = 0; row < nRows; row++) {
89        inputMatrix[row, nFeatures] = classIndices[inputMatrix[row, nFeatures]];
90      }
91      int info;
92      alglib.mnltrainh(inputMatrix, nRows, nFeatures, nClasses, out info, out lm, out rep);
93      if (info != 1) throw new ArgumentException("Error in calculation of logit classification solution");
94
95      rmsError = alglib.mnlrmserror(lm, inputMatrix, nRows);
96      relClassError = alglib.mnlrelclserror(lm, inputMatrix, nRows);
97
98      MultinomialLogitClassificationSolution solution = new MultinomialLogitClassificationSolution(new MultinomialLogitModel(lm, targetVariable, allowedInputVariables, classValues), (IClassificationProblemData)problemData.Clone());
99      return solution;
100    }
101    #endregion
102  }
103}
Note: See TracBrowser for help on using the repository browser.