Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Regression/RegressionProblemData.cs @ 18086

Last change on this file since 18086 was 18086, checked in by mkommend, 2 years ago

#2521: Merged trunk changes into branch.

File size: 8.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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 HEAL.Attic;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Parameters;
30
31namespace HeuristicLab.Problems.DataAnalysis {
32  [StorableType("EE612297-B1AF-42D2-BF21-AF9A2D42791C")]
33  [Item("RegressionProblemData", "Represents an item containing all data defining a regression problem.")]
34  public class RegressionProblemData : SupervisedDataAnalysisProblemData, IRegressionProblemData, IStorableContent {
35    //protected const string VariableRangesParameterName = "VariableRanges";
36    public string Filename { get; set; }
37
38    #region default data
39    private static double[,] kozaF1 = new double[,] {
40          {2.017885919, -1.449165046},
41          {1.30060506,  -1.344523885},
42          {1.147134798, -1.317989331},
43          {0.877182504, -1.266142284},
44          {0.852562452, -1.261020794},
45          {0.431095788, -1.158793317},
46          {0.112586002, -1.050908405},
47          {0.04594507,  -1.021989402},
48          {0.042572879, -1.020438113},
49          {-0.074027291,  -0.959859562},
50          {-0.109178553,  -0.938094706},
51          {-0.259721109,  -0.803635355},
52          {-0.272991057,  -0.387519561},
53          {-0.161978191,  -0.193611001},
54          {-0.102489983,  -0.114215349},
55          {-0.01469968, -0.014918985},
56          {-0.008863365,  -0.008942626},
57          {0.026751057, 0.026054094},
58          {0.166922436, 0.14309643},
59          {0.176953808, 0.1504144},
60          {0.190233418, 0.159916534},
61          {0.199800708, 0.166635331},
62          {0.261502822, 0.207600348},
63          {0.30182879,  0.232370249},
64          {0.83763905,  0.468046718}
65    };
66    private static readonly Dataset defaultDataset;
67    private static readonly IEnumerable<string> defaultAllowedInputVariables;
68    private static readonly string defaultTargetVariable;
69
70    private static readonly RegressionProblemData emptyProblemData;
71    public static RegressionProblemData EmptyProblemData {
72      get { return emptyProblemData; }
73    }
74
75    static RegressionProblemData() {
76      defaultDataset = new Dataset(new string[] { "y", "x" }, kozaF1);
77      defaultDataset.Name = "Fourth-order Polynomial Function Benchmark Dataset";
78      defaultDataset.Description = "f(x) = x^4 + x^3 + x^2 + x";
79      defaultAllowedInputVariables = new List<string>() { "x" };
80      defaultTargetVariable = "y";
81
82      var problemData = new RegressionProblemData();
83      problemData.Parameters.Clear();
84      problemData.Name = "Empty Regression ProblemData";
85      problemData.Description = "This ProblemData acts as place holder before the correct problem data is loaded.";
86      problemData.isEmpty = true;
87
88      problemData.Parameters.Add(new FixedValueParameter<Dataset>(DatasetParameterName, "", new Dataset()));
89      problemData.Parameters.Add(new FixedValueParameter<ReadOnlyCheckedItemList<StringValue>>(InputVariablesParameterName, ""));
90      problemData.Parameters.Add(new FixedValueParameter<IntRange>(TrainingPartitionParameterName, "", (IntRange)new IntRange(0, 0).AsReadOnly()));
91      problemData.Parameters.Add(new FixedValueParameter<IntRange>(TestPartitionParameterName, "", (IntRange)new IntRange(0, 0).AsReadOnly()));
92      problemData.Parameters.Add(new ConstrainedValueParameter<StringValue>(TargetVariableParameterName, new ItemSet<StringValue>()));
93      problemData.Parameters.Add(new FixedValueParameter<IntervalCollection>(VariableRangesParameterName, "", new IntervalCollection()));
94      emptyProblemData = problemData;
95    }
96    #endregion
97
98    #region parameter properties
99    public IConstrainedValueParameter<StringValue> TargetVariableParameter => (IConstrainedValueParameter<StringValue>)Parameters[TargetVariableParameterName];
100    /*public IFixedValueParameter<IntervalCollection> VariableRangesParameter => (IFixedValueParameter<IntervalCollection>)Parameters[VariableRangesParameterName];
101    #endregion
102
103    #region properties
104    public IntervalCollection VariableRanges {
105      get => VariableRangesParameter.Value;
106    }*/
107
108    public string TargetVariable {
109      get { return TargetVariableParameter.Value.Value; }
110      set {
111        if (value == null) throw new ArgumentNullException("targetVariable", "The provided value for the targetVariable is null.");
112        if (value == TargetVariable) return;
113
114        var matchingParameterValue = TargetVariableParameter.ValidValues.FirstOrDefault(v => v.Value == value);
115        if (matchingParameterValue == null) throw new ArgumentException("The provided value is not valid as the targetVariable.", "targetVariable");
116        TargetVariableParameter.Value = matchingParameterValue;
117      }
118    }
119    public IEnumerable<double> TargetVariableValues => Dataset.GetDoubleValues(TargetVariable);
120    public IEnumerable<double> TargetVariableTrainingValues => Dataset.GetDoubleValues(TargetVariable, TrainingIndices);
121    public IEnumerable<double> TargetVariableTestValues => Dataset.GetDoubleValues(TargetVariable, TestIndices);
122    #endregion
123
124
125
126    [StorableConstructor]
127    protected RegressionProblemData(StorableConstructorFlag _) : base(_) { }
128    [StorableHook(HookType.AfterDeserialization)]
129    private void AfterDeserialization() {
130      /*if (!Parameters.ContainsKey(VariableRangesParameterName)) {
131        var variableRanges = Dataset.GetVariableRanges();
132        Parameters.Add(new FixedValueParameter<IntervalCollection>(VariableRangesParameterName, variableRanges));
133      }*/
134
135      RegisterParameterEvents();
136    }
137
138    protected RegressionProblemData(RegressionProblemData original, Cloner cloner)
139      : base(original, cloner) {
140      RegisterParameterEvents();
141    }
142    public override IDeepCloneable Clone(Cloner cloner) {
143      if (this == emptyProblemData) return emptyProblemData;
144      return new RegressionProblemData(this, cloner);
145    }
146
147    public RegressionProblemData()
148      : this(defaultDataset, defaultAllowedInputVariables, defaultTargetVariable) {
149    }
150    public RegressionProblemData(IRegressionProblemData regressionProblemData)
151      : this(regressionProblemData.Dataset, regressionProblemData.AllowedInputVariables, regressionProblemData.TargetVariable) {
152      TrainingPartition.Start = regressionProblemData.TrainingPartition.Start;
153      TrainingPartition.End = regressionProblemData.TrainingPartition.End;
154      TestPartition.Start = regressionProblemData.TestPartition.Start;
155      TestPartition.End = regressionProblemData.TestPartition.End;
156    }
157
158    public RegressionProblemData(IDataset dataset, IEnumerable<string> allowedInputVariables, string targetVariable,
159      IEnumerable<ITransformation> transformations = null/*,
160      IntervalCollection variableRanges = null*/)
161      : base(dataset, allowedInputVariables, transformations ?? Enumerable.Empty<ITransformation>()) {
162      var variables = InputVariables.Select(x => x.AsReadOnly()).ToList();
163      Parameters.Add(new ConstrainedValueParameter<StringValue>(TargetVariableParameterName, new ItemSet<StringValue>(variables), variables.Where(x => x.Value == targetVariable).First()));
164      /*if (variableRanges == null) {
165        variableRanges = Dataset.GetVariableRanges();
166      }
167      Parameters.Add(new FixedValueParameter<IntervalCollection>(VariableRangesParameterName, variableRanges));*/
168    }
169    private void RegisterParameterEvents() {
170      TargetVariableParameter.ValueChanged += new EventHandler(Parameter_ValueChanged);
171      // VariableRanges are fixed parameters
172    }
173    private void Parameter_ValueChanged(object sender, EventArgs e) {
174      OnChanged();
175    }
176  }
177}
Note: See TracBrowser for help on using the repository browser.