[5617] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5617] | 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;
|
---|
[5617] | 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
[5777] | 28 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[5617] | 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 31 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 32 | using HeuristicLab.Problems.DataAnalysis.Symbolic;
|
---|
[5624] | 33 | using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
|
---|
[5617] | 34 |
|
---|
| 35 | namespace HeuristicLab.Algorithms.DataAnalysis {
|
---|
| 36 | /// <summary>
|
---|
| 37 | /// Linear regression data analysis algorithm.
|
---|
| 38 | /// </summary>
|
---|
[6240] | 39 | [Item("Linear Regression", "Linear regression data analysis algorithm (wrapper for ALGLIB).")]
|
---|
[5617] | 40 | [Creatable("Data Analysis")]
|
---|
| 41 | [StorableClass]
|
---|
| 42 | public sealed class LinearRegression : FixedDataAnalysisAlgorithm<IRegressionProblem> {
|
---|
[5649] | 43 | private const string LinearRegressionModelResultName = "Linear regression solution";
|
---|
[5617] | 44 |
|
---|
| 45 | [StorableConstructor]
|
---|
| 46 | private LinearRegression(bool deserializing) : base(deserializing) { }
|
---|
| 47 | private LinearRegression(LinearRegression original, Cloner cloner)
|
---|
| 48 | : base(original, cloner) {
|
---|
| 49 | }
|
---|
| 50 | public LinearRegression()
|
---|
| 51 | : base() {
|
---|
[5649] | 52 | Problem = new RegressionProblem();
|
---|
[5617] | 53 | }
|
---|
| 54 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 55 | private void AfterDeserialization() { }
|
---|
| 56 |
|
---|
| 57 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 58 | return new LinearRegression(this, cloner);
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | #region linear regression
|
---|
| 62 | protected override void Run() {
|
---|
| 63 | double rmsError, cvRmsError;
|
---|
[5624] | 64 | var solution = CreateLinearRegressionSolution(Problem.ProblemData, out rmsError, out cvRmsError);
|
---|
[5649] | 65 | Results.Add(new Result(LinearRegressionModelResultName, "The linear regression solution.", solution));
|
---|
| 66 | Results.Add(new Result("Root mean square error", "The root of the mean of squared errors of the linear regression solution on the training set.", new DoubleValue(rmsError)));
|
---|
| 67 | Results.Add(new Result("Estimated root mean square error (cross-validation)", "The estimated root of the mean of squared errors of the linear regression solution via cross validation.", new DoubleValue(cvRmsError)));
|
---|
[5617] | 68 | }
|
---|
| 69 |
|
---|
[5624] | 70 | public static ISymbolicRegressionSolution CreateLinearRegressionSolution(IRegressionProblemData problemData, out double rmsError, out double cvRmsError) {
|
---|
| 71 | Dataset dataset = problemData.Dataset;
|
---|
| 72 | string targetVariable = problemData.TargetVariable;
|
---|
[5649] | 73 | IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
|
---|
[6182] | 74 | IEnumerable<int> rows = problemData.TrainingIndizes;
|
---|
[5658] | 75 | double[,] inputMatrix = AlglibUtil.PrepareInputMatrix(dataset, allowedInputVariables.Concat(new string[] { targetVariable }), rows);
|
---|
[6002] | 76 | if (inputMatrix.Cast<double>().Any(x => double.IsNaN(x) || double.IsInfinity(x)))
|
---|
| 77 | throw new NotSupportedException("Linear regression does not support NaN or infinity values in the input dataset.");
|
---|
[5617] | 78 |
|
---|
| 79 | alglib.linearmodel lm = new alglib.linearmodel();
|
---|
| 80 | alglib.lrreport ar = new alglib.lrreport();
|
---|
| 81 | int nRows = inputMatrix.GetLength(0);
|
---|
| 82 | int nFeatures = inputMatrix.GetLength(1) - 1;
|
---|
| 83 | double[] coefficients = new double[nFeatures + 1]; // last coefficient is for the constant
|
---|
| 84 |
|
---|
| 85 | int retVal = 1;
|
---|
| 86 | alglib.lrbuild(inputMatrix, nRows, nFeatures, out retVal, out lm, out ar);
|
---|
[5649] | 87 | if (retVal != 1) throw new ArgumentException("Error in calculation of linear regression solution");
|
---|
[5617] | 88 | rmsError = ar.rmserror;
|
---|
| 89 | cvRmsError = ar.cvrmserror;
|
---|
| 90 |
|
---|
| 91 | alglib.lrunpack(lm, out coefficients, out nFeatures);
|
---|
| 92 |
|
---|
| 93 | ISymbolicExpressionTree tree = new SymbolicExpressionTree(new ProgramRootSymbol().CreateTreeNode());
|
---|
| 94 | ISymbolicExpressionTreeNode startNode = new StartSymbol().CreateTreeNode();
|
---|
[5733] | 95 | tree.Root.AddSubtree(startNode);
|
---|
[5617] | 96 | ISymbolicExpressionTreeNode addition = new Addition().CreateTreeNode();
|
---|
[5733] | 97 | startNode.AddSubtree(addition);
|
---|
[5617] | 98 |
|
---|
| 99 | int col = 0;
|
---|
| 100 | foreach (string column in allowedInputVariables) {
|
---|
| 101 | VariableTreeNode vNode = (VariableTreeNode)new HeuristicLab.Problems.DataAnalysis.Symbolic.Variable().CreateTreeNode();
|
---|
| 102 | vNode.VariableName = column;
|
---|
| 103 | vNode.Weight = coefficients[col];
|
---|
[5733] | 104 | addition.AddSubtree(vNode);
|
---|
[5617] | 105 | col++;
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | ConstantTreeNode cNode = (ConstantTreeNode)new Constant().CreateTreeNode();
|
---|
| 109 | cNode.Value = coefficients[coefficients.Length - 1];
|
---|
[5733] | 110 | addition.AddSubtree(cNode);
|
---|
[5617] | 111 |
|
---|
[6649] | 112 | SymbolicRegressionSolution solution = new SymbolicRegressionSolution(new SymbolicRegressionModel(tree, new SymbolicDataAnalysisExpressionTreeInterpreter()), (IRegressionProblemData)problemData.Clone());
|
---|
[6555] | 113 | solution.Model.Name = "Linear Regression Model";
|
---|
[5624] | 114 | return solution;
|
---|
[5617] | 115 | }
|
---|
| 116 | #endregion
|
---|
| 117 | }
|
---|
| 118 | }
|
---|