[5658] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5658] | 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;
|
---|
[5777] | 23 | using System.Collections.Generic;
|
---|
[5658] | 24 | using System.Linq;
|
---|
[14523] | 25 | using System.Threading;
|
---|
[5658] | 26 | using HeuristicLab.Common;
|
---|
| 27 | using HeuristicLab.Core;
|
---|
[5777] | 28 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[5658] | 29 | using HeuristicLab.Optimization;
|
---|
[16565] | 30 | using HEAL.Attic;
|
---|
[5658] | 31 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 32 | using HeuristicLab.Problems.DataAnalysis.Symbolic;
|
---|
| 33 | using HeuristicLab.Problems.DataAnalysis.Symbolic.Classification;
|
---|
| 34 |
|
---|
| 35 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
| 36 | /// <summary>
|
---|
| 37 | /// Linear discriminant analysis classification algorithm.
|
---|
| 38 | /// </summary>
|
---|
[14826] | 39 | [Item("Linear Discriminant Analysis (LDA)", "Linear discriminant analysis classification algorithm (wrapper for ALGLIB).")]
|
---|
[12504] | 40 | [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 100)]
|
---|
[16565] | 41 | [StorableType("032E1FDE-D140-47BF-8EB1-D63EC33B0629")]
|
---|
[5658] | 42 | public sealed class LinearDiscriminantAnalysis : FixedDataAnalysisAlgorithm<IClassificationProblem> {
|
---|
| 43 | private const string LinearDiscriminantAnalysisSolutionResultName = "Linear discriminant analysis solution";
|
---|
| 44 |
|
---|
| 45 | [StorableConstructor]
|
---|
[16565] | 46 | private LinearDiscriminantAnalysis(StorableConstructorFlag _) : base(_) { }
|
---|
[5658] | 47 | private LinearDiscriminantAnalysis(LinearDiscriminantAnalysis original, Cloner cloner)
|
---|
| 48 | : base(original, cloner) {
|
---|
| 49 | }
|
---|
| 50 | public LinearDiscriminantAnalysis()
|
---|
| 51 | : base() {
|
---|
| 52 | Problem = new ClassificationProblem();
|
---|
| 53 | }
|
---|
| 54 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 55 | private void AfterDeserialization() { }
|
---|
| 56 |
|
---|
| 57 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 58 | return new LinearDiscriminantAnalysis(this, cloner);
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | #region Fisher LDA
|
---|
[14523] | 62 | protected override void Run(CancellationToken cancellationToken) {
|
---|
[5658] | 63 | var solution = CreateLinearDiscriminantAnalysisSolution(Problem.ProblemData);
|
---|
| 64 | Results.Add(new Result(LinearDiscriminantAnalysisSolutionResultName, "The linear discriminant analysis.", solution));
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | public static IClassificationSolution CreateLinearDiscriminantAnalysisSolution(IClassificationProblemData problemData) {
|
---|
[12509] | 68 | var dataset = problemData.Dataset;
|
---|
[5658] | 69 | string targetVariable = problemData.TargetVariable;
|
---|
| 70 | IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
|
---|
[8139] | 71 | IEnumerable<int> rows = problemData.TrainingIndices;
|
---|
[5658] | 72 | int nClasses = problemData.ClassNames.Count();
|
---|
[14826] | 73 | var doubleVariableNames = allowedInputVariables.Where(dataset.VariableHasType<double>).ToArray();
|
---|
| 74 | var factorVariableNames = allowedInputVariables.Where(dataset.VariableHasType<string>).ToArray();
|
---|
[14843] | 75 | double[,] inputMatrix = dataset.ToArray(doubleVariableNames.Concat(new string[] { targetVariable }), rows);
|
---|
[14826] | 76 |
|
---|
[14843] | 77 | var factorVariables = dataset.GetFactorVariableValues(factorVariableNames, rows);
|
---|
| 78 | var factorMatrix = dataset.ToArray(factorVariables, rows);
|
---|
[14826] | 79 |
|
---|
| 80 | inputMatrix = factorMatrix.HorzCat(inputMatrix);
|
---|
| 81 |
|
---|
[15786] | 82 | if (inputMatrix.ContainsNanOrInfinity())
|
---|
[6002] | 83 | throw new NotSupportedException("Linear discriminant analysis does not support NaN or infinity values in the input dataset.");
|
---|
[5658] | 84 |
|
---|
| 85 | // change class values into class index
|
---|
| 86 | int targetVariableColumn = inputMatrix.GetLength(1) - 1;
|
---|
[5664] | 87 | List<double> classValues = problemData.ClassValues.OrderBy(x => x).ToList();
|
---|
[5658] | 88 | for (int row = 0; row < inputMatrix.GetLength(0); row++) {
|
---|
| 89 | inputMatrix[row, targetVariableColumn] = classValues.IndexOf(inputMatrix[row, targetVariableColumn]);
|
---|
| 90 | }
|
---|
| 91 | int info;
|
---|
| 92 | double[] w;
|
---|
[14826] | 93 | alglib.fisherlda(inputMatrix, inputMatrix.GetLength(0), inputMatrix.GetLength(1) - 1, nClasses, out info, out w);
|
---|
[5658] | 94 | if (info < 1) throw new ArgumentException("Error in calculation of linear discriminant analysis solution");
|
---|
| 95 |
|
---|
[14843] | 96 | var nFactorCoeff = factorMatrix.GetLength(1);
|
---|
| 97 | var tree = LinearModelToTreeConverter.CreateTree(factorVariables, w.Take(nFactorCoeff).ToArray(),
|
---|
| 98 | doubleVariableNames, w.Skip(nFactorCoeff).Take(doubleVariableNames.Length).ToArray());
|
---|
[5658] | 99 |
|
---|
[14685] | 100 | var model = CreateDiscriminantFunctionModel(tree, new SymbolicDataAnalysisExpressionTreeLinearInterpreter(), problemData, rows);
|
---|
[6649] | 101 | SymbolicDiscriminantFunctionClassificationSolution solution = new SymbolicDiscriminantFunctionClassificationSolution(model, (IClassificationProblemData)problemData.Clone());
|
---|
[5678] | 102 |
|
---|
[5658] | 103 | return solution;
|
---|
| 104 | }
|
---|
| 105 | #endregion
|
---|
[5678] | 106 |
|
---|
| 107 | private static SymbolicDiscriminantFunctionClassificationModel CreateDiscriminantFunctionModel(ISymbolicExpressionTree tree,
|
---|
| 108 | ISymbolicDataAnalysisExpressionTreeInterpreter interpreter,
|
---|
| 109 | IClassificationProblemData problemData,
|
---|
| 110 | IEnumerable<int> rows) {
|
---|
[13941] | 111 | var model = new SymbolicDiscriminantFunctionClassificationModel(problemData.TargetVariable, tree, interpreter, new AccuracyMaximizationThresholdCalculator());
|
---|
[8594] | 112 | model.RecalculateModelParameters(problemData, rows);
|
---|
[8531] | 113 | return model;
|
---|
[5678] | 114 | }
|
---|
[5658] | 115 | }
|
---|
| 116 | }
|
---|