[4271] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4271] | 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 |
|
---|
[5907] | 22 | using System.Collections.Generic;
|
---|
[4271] | 23 | using System.Linq;
|
---|
| 24 | using HeuristicLab.Analysis;
|
---|
[4272] | 25 | using HeuristicLab.Common;
|
---|
[4271] | 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Optimization;
|
---|
| 29 | using HeuristicLab.Parameters;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 31 |
|
---|
[5747] | 32 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression {
|
---|
| 33 | [Item("SymbolicRegressionSingleObjectiveOverfittingAnalyzer", "Calculates and tracks correlation of training and validation fitness of symbolic regression models.")]
|
---|
[4271] | 34 | [StorableClass]
|
---|
[5747] | 35 | public sealed class SymbolicRegressionSingleObjectiveOverfittingAnalyzer : SymbolicDataAnalysisSingleObjectiveValidationAnalyzer<ISymbolicRegressionSingleObjectiveEvaluator, IRegressionProblemData> {
|
---|
| 36 | private const string TrainingValidationCorrelationParameterName = "Training and validation fitness correlation";
|
---|
| 37 | private const string TrainingValidationCorrelationTableParameterName = "Training and validation fitness correlation table";
|
---|
[5192] | 38 | private const string LowerCorrelationThresholdParameterName = "LowerCorrelationThreshold";
|
---|
| 39 | private const string UpperCorrelationThresholdParameterName = "UpperCorrelationThreshold";
|
---|
| 40 | private const string OverfittingParameterName = "IsOverfitting";
|
---|
[4271] | 41 |
|
---|
| 42 | #region parameter properties
|
---|
| 43 | public ILookupParameter<DoubleValue> TrainingValidationQualityCorrelationParameter {
|
---|
[5192] | 44 | get { return (ILookupParameter<DoubleValue>)Parameters[TrainingValidationCorrelationParameterName]; }
|
---|
[4271] | 45 | }
|
---|
[5192] | 46 | public ILookupParameter<DataTable> TrainingValidationQualityCorrelationTableParameter {
|
---|
| 47 | get { return (ILookupParameter<DataTable>)Parameters[TrainingValidationCorrelationTableParameterName]; }
|
---|
[4271] | 48 | }
|
---|
[5192] | 49 | public IValueLookupParameter<DoubleValue> LowerCorrelationThresholdParameter {
|
---|
| 50 | get { return (IValueLookupParameter<DoubleValue>)Parameters[LowerCorrelationThresholdParameterName]; }
|
---|
[4326] | 51 | }
|
---|
[5192] | 52 | public IValueLookupParameter<DoubleValue> UpperCorrelationThresholdParameter {
|
---|
| 53 | get { return (IValueLookupParameter<DoubleValue>)Parameters[UpperCorrelationThresholdParameterName]; }
|
---|
| 54 | }
|
---|
[4271] | 55 | public ILookupParameter<BoolValue> OverfittingParameter {
|
---|
[5192] | 56 | get { return (ILookupParameter<BoolValue>)Parameters[OverfittingParameterName]; }
|
---|
[4271] | 57 | }
|
---|
| 58 | #endregion
|
---|
| 59 |
|
---|
[5192] | 60 | [StorableConstructor]
|
---|
[5747] | 61 | private SymbolicRegressionSingleObjectiveOverfittingAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
| 62 | private SymbolicRegressionSingleObjectiveOverfittingAnalyzer(SymbolicRegressionSingleObjectiveOverfittingAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
| 63 | public SymbolicRegressionSingleObjectiveOverfittingAnalyzer()
|
---|
[4271] | 64 | : base() {
|
---|
[5192] | 65 | Parameters.Add(new LookupParameter<DoubleValue>(TrainingValidationCorrelationParameterName, "Correlation of training and validation fitnesses"));
|
---|
| 66 | Parameters.Add(new LookupParameter<DataTable>(TrainingValidationCorrelationTableParameterName, "Data table of training and validation fitness correlation values over the whole run."));
|
---|
| 67 | Parameters.Add(new ValueLookupParameter<DoubleValue>(LowerCorrelationThresholdParameterName, "Lower threshold for correlation value that marks the boundary from non-overfitting to overfitting.", new DoubleValue(0.65)));
|
---|
| 68 | Parameters.Add(new ValueLookupParameter<DoubleValue>(UpperCorrelationThresholdParameterName, "Upper threshold for correlation value that marks the boundary from overfitting to non-overfitting.", new DoubleValue(0.75)));
|
---|
| 69 | Parameters.Add(new LookupParameter<BoolValue>(OverfittingParameterName, "Boolean indicator for overfitting."));
|
---|
[4271] | 70 | }
|
---|
| 71 |
|
---|
[5192] | 72 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[5747] | 73 | return new SymbolicRegressionSingleObjectiveOverfittingAnalyzer(this, cloner);
|
---|
[4271] | 74 | }
|
---|
| 75 |
|
---|
[5747] | 76 | public override IOperation Apply() {
|
---|
[5882] | 77 | IEnumerable<int> rows = GenerateRowsToEvaluate();
|
---|
[5907] | 78 | if (!rows.Any()) return base.Apply();
|
---|
[5882] | 79 |
|
---|
[5197] | 80 | double[] trainingQuality = QualityParameter.ActualValue.Select(x => x.Value).ToArray();
|
---|
[6728] | 81 | var problemData = ProblemDataParameter.ActualValue;
|
---|
| 82 | var evaluator = EvaluatorParameter.ActualValue;
|
---|
[5747] | 83 | // evaluate on validation partition
|
---|
[6728] | 84 | IExecutionContext childContext = (IExecutionContext)ExecutionContext.CreateChildOperation(evaluator);
|
---|
| 85 | double[] validationQuality = SymbolicExpressionTree
|
---|
| 86 | .AsParallel()
|
---|
| 87 | .Select(t => evaluator.Evaluate(childContext, t, problemData, rows))
|
---|
| 88 | .ToArray();
|
---|
[5823] | 89 | double r = 0.0;
|
---|
| 90 | try {
|
---|
| 91 | r = alglib.spearmancorr2(trainingQuality, validationQuality);
|
---|
| 92 | }
|
---|
| 93 | catch (alglib.alglibexception) {
|
---|
| 94 | r = 0.0;
|
---|
| 95 | }
|
---|
[4271] | 96 |
|
---|
[5192] | 97 | TrainingValidationQualityCorrelationParameter.ActualValue = new DoubleValue(r);
|
---|
[4275] | 98 |
|
---|
[5192] | 99 | if (TrainingValidationQualityCorrelationTableParameter.ActualValue == null) {
|
---|
[5747] | 100 | var dataTable = new DataTable(TrainingValidationQualityCorrelationTableParameter.Name, TrainingValidationQualityCorrelationTableParameter.Description);
|
---|
| 101 | dataTable.Rows.Add(new DataRow(TrainingValidationQualityCorrelationParameter.Name, TrainingValidationQualityCorrelationParameter.Description));
|
---|
[5858] | 102 | dataTable.Rows[TrainingValidationQualityCorrelationParameter.Name].VisualProperties.StartIndexZero = true;
|
---|
[5192] | 103 | TrainingValidationQualityCorrelationTableParameter.ActualValue = dataTable;
|
---|
[5747] | 104 | ResultCollectionParameter.ActualValue.Add(new Result(TrainingValidationQualityCorrelationTableParameter.Name, dataTable));
|
---|
[4272] | 105 | }
|
---|
| 106 |
|
---|
[5747] | 107 | TrainingValidationQualityCorrelationTableParameter.ActualValue.Rows[TrainingValidationQualityCorrelationParameter.Name].Values.Add(r);
|
---|
[4272] | 108 |
|
---|
[5192] | 109 | if (OverfittingParameter.ActualValue != null && OverfittingParameter.ActualValue.Value) {
|
---|
[5436] | 110 | // overfitting == true
|
---|
| 111 | // => r must reach the upper threshold to switch back to non-overfitting state
|
---|
| 112 | OverfittingParameter.ActualValue = new BoolValue(r < UpperCorrelationThresholdParameter.ActualValue.Value);
|
---|
[5192] | 113 | } else {
|
---|
[5436] | 114 | // overfitting == false
|
---|
| 115 | // => r must drop below lower threshold to switch to overfitting state
|
---|
| 116 | OverfittingParameter.ActualValue = new BoolValue(r < LowerCorrelationThresholdParameter.ActualValue.Value);
|
---|
[5010] | 117 | }
|
---|
[5747] | 118 |
|
---|
| 119 | return base.Apply();
|
---|
[4271] | 120 | }
|
---|
| 121 | }
|
---|
| 122 | }
|
---|