1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Collections;
|
---|
27 | using HeuristicLab.Common;
|
---|
28 | using HeuristicLab.Core;
|
---|
29 | using HeuristicLab.Data;
|
---|
30 | using HeuristicLab.Parameters;
|
---|
31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
32 |
|
---|
33 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
34 | [StorableClass]
|
---|
35 | public abstract class DataAnalysisProblemData : ParameterizedNamedItem, IDataAnalysisProblemData {
|
---|
36 | protected const string DatasetParameterName = "Dataset";
|
---|
37 | protected const string InputVariablesParameterName = "InputVariables";
|
---|
38 | protected const string TrainingPartitionParameterName = "TrainingPartition";
|
---|
39 | protected const string TestPartitionParameterName = "TestPartition";
|
---|
40 | protected const string TransformationsParameterName = "Transformations";
|
---|
41 |
|
---|
42 | #region parameter properites
|
---|
43 | public IFixedValueParameter<Dataset> DatasetParameter {
|
---|
44 | get { return (IFixedValueParameter<Dataset>)Parameters[DatasetParameterName]; }
|
---|
45 | }
|
---|
46 | public IFixedValueParameter<ReadOnlyCheckedItemList<StringValue>> InputVariablesParameter {
|
---|
47 | get { return (IFixedValueParameter<ReadOnlyCheckedItemList<StringValue>>)Parameters[InputVariablesParameterName]; }
|
---|
48 | }
|
---|
49 | public IFixedValueParameter<IntRange> TrainingPartitionParameter {
|
---|
50 | get { return (IFixedValueParameter<IntRange>)Parameters[TrainingPartitionParameterName]; }
|
---|
51 | }
|
---|
52 | public IFixedValueParameter<IntRange> TestPartitionParameter {
|
---|
53 | get { return (IFixedValueParameter<IntRange>)Parameters[TestPartitionParameterName]; }
|
---|
54 | }
|
---|
55 | public IFixedValueParameter<ReadOnlyItemList<ITransformation>> TransformationsParameter {
|
---|
56 | get { return (IFixedValueParameter<ReadOnlyItemList<ITransformation>>)Parameters[TransformationsParameterName]; }
|
---|
57 | }
|
---|
58 | #endregion
|
---|
59 |
|
---|
60 | #region properties
|
---|
61 | protected bool isEmpty = false;
|
---|
62 | public bool IsEmpty {
|
---|
63 | get { return isEmpty; }
|
---|
64 | }
|
---|
65 | public IDataset Dataset {
|
---|
66 | get { return DatasetParameter.Value; }
|
---|
67 | }
|
---|
68 | public ICheckedItemList<StringValue> InputVariables {
|
---|
69 | get { return InputVariablesParameter.Value; }
|
---|
70 | }
|
---|
71 | public IEnumerable<string> AllowedInputVariables {
|
---|
72 | get { return InputVariables.CheckedItems.Select(x => x.Value.Value); }
|
---|
73 | }
|
---|
74 |
|
---|
75 | public IntRange TrainingPartition {
|
---|
76 | get { return TrainingPartitionParameter.Value; }
|
---|
77 | }
|
---|
78 | public IntRange TestPartition {
|
---|
79 | get { return TestPartitionParameter.Value; }
|
---|
80 | }
|
---|
81 |
|
---|
82 | public virtual IEnumerable<int> AllIndices {
|
---|
83 | get { return Enumerable.Range(0, Dataset.Rows); }
|
---|
84 | }
|
---|
85 | public virtual IEnumerable<int> TrainingIndices {
|
---|
86 | get {
|
---|
87 | return Enumerable.Range(TrainingPartition.Start, Math.Max(0, TrainingPartition.End - TrainingPartition.Start))
|
---|
88 | .Where(IsTrainingSample);
|
---|
89 | }
|
---|
90 | }
|
---|
91 | public virtual IEnumerable<int> TestIndices {
|
---|
92 | get {
|
---|
93 | return Enumerable.Range(TestPartition.Start, Math.Max(0, TestPartition.End - TestPartition.Start))
|
---|
94 | .Where(IsTestSample);
|
---|
95 | }
|
---|
96 | }
|
---|
97 |
|
---|
98 | public IEnumerable<ITransformation> Transformations {
|
---|
99 | get { return TransformationsParameter.Value; }
|
---|
100 | }
|
---|
101 |
|
---|
102 | public virtual bool IsTrainingSample(int index) {
|
---|
103 | return index >= 0 && index < Dataset.Rows &&
|
---|
104 | TrainingPartition.Start <= index && index < TrainingPartition.End &&
|
---|
105 | (index < TestPartition.Start || TestPartition.End <= index);
|
---|
106 | }
|
---|
107 |
|
---|
108 | public virtual bool IsTestSample(int index) {
|
---|
109 | return index >= 0 && index < Dataset.Rows &&
|
---|
110 | TestPartition.Start <= index && index < TestPartition.End;
|
---|
111 | }
|
---|
112 | #endregion
|
---|
113 |
|
---|
114 | protected DataAnalysisProblemData(DataAnalysisProblemData original, Cloner cloner)
|
---|
115 | : base(original, cloner) {
|
---|
116 | isEmpty = original.isEmpty;
|
---|
117 | RegisterEventHandlers();
|
---|
118 | }
|
---|
119 | [StorableConstructor]
|
---|
120 | protected DataAnalysisProblemData(bool deserializing) : base(deserializing) { }
|
---|
121 |
|
---|
122 | [StorableHook(HookType.AfterDeserialization)]
|
---|
123 | private void AfterDeserialization() {
|
---|
124 | if (!Parameters.ContainsKey(TransformationsParameterName)) {
|
---|
125 | Parameters.Add(new FixedValueParameter<ReadOnlyItemList<ITransformation>>(TransformationsParameterName, "", new ItemList<ITransformation>().AsReadOnly()));
|
---|
126 | TransformationsParameter.Hidden = true;
|
---|
127 | }
|
---|
128 | RegisterEventHandlers();
|
---|
129 | }
|
---|
130 |
|
---|
131 | protected DataAnalysisProblemData(IDataset dataset, IEnumerable<string> allowedInputVariables, IEnumerable<ITransformation> transformations = null) {
|
---|
132 | if (dataset == null) throw new ArgumentNullException("The dataset must not be null.");
|
---|
133 | if (allowedInputVariables == null) throw new ArgumentNullException("The allowedInputVariables must not be null.");
|
---|
134 |
|
---|
135 | if (allowedInputVariables.Except(dataset.DoubleVariables).Any())
|
---|
136 | throw new ArgumentException("All allowed input variables must be present in the dataset and of type double.");
|
---|
137 |
|
---|
138 | var inputVariables = new CheckedItemList<StringValue>(dataset.DoubleVariables.Select(x => new StringValue(x)));
|
---|
139 | foreach (StringValue x in inputVariables)
|
---|
140 | inputVariables.SetItemCheckedState(x, allowedInputVariables.Contains(x.Value));
|
---|
141 |
|
---|
142 | int trainingPartitionStart = 0;
|
---|
143 | int trainingPartitionEnd = dataset.Rows / 2;
|
---|
144 | int testPartitionStart = dataset.Rows / 2;
|
---|
145 | int testPartitionEnd = dataset.Rows;
|
---|
146 |
|
---|
147 | var transformationsList = new ItemList<ITransformation>(transformations ?? Enumerable.Empty<ITransformation>());
|
---|
148 |
|
---|
149 | Parameters.Add(new FixedValueParameter<Dataset>(DatasetParameterName, "", (Dataset)dataset));
|
---|
150 | Parameters.Add(new FixedValueParameter<ReadOnlyCheckedItemList<StringValue>>(InputVariablesParameterName, "", inputVariables.AsReadOnly()));
|
---|
151 | Parameters.Add(new FixedValueParameter<IntRange>(TrainingPartitionParameterName, "", new IntRange(trainingPartitionStart, trainingPartitionEnd)));
|
---|
152 | Parameters.Add(new FixedValueParameter<IntRange>(TestPartitionParameterName, "", new IntRange(testPartitionStart, testPartitionEnd)));
|
---|
153 | Parameters.Add(new FixedValueParameter<ReadOnlyItemList<ITransformation>>(TransformationsParameterName, "", transformationsList.AsReadOnly()));
|
---|
154 |
|
---|
155 | TransformationsParameter.Hidden = true;
|
---|
156 |
|
---|
157 | ((ValueParameter<Dataset>)DatasetParameter).ReactOnValueToStringChangedAndValueItemImageChanged = false;
|
---|
158 | RegisterEventHandlers();
|
---|
159 | }
|
---|
160 |
|
---|
161 | private void RegisterEventHandlers() {
|
---|
162 | DatasetParameter.ValueChanged += new EventHandler(Parameter_ValueChanged);
|
---|
163 | InputVariables.CheckedItemsChanged += new CollectionItemsChangedEventHandler<IndexedItem<StringValue>>(InputVariables_CheckedItemsChanged);
|
---|
164 | TrainingPartition.ValueChanged += new EventHandler(Parameter_ValueChanged);
|
---|
165 | TestPartition.ValueChanged += new EventHandler(Parameter_ValueChanged);
|
---|
166 | TransformationsParameter.ValueChanged += new EventHandler(Parameter_ValueChanged);
|
---|
167 | }
|
---|
168 |
|
---|
169 | private void InputVariables_CheckedItemsChanged(object sender, CollectionItemsChangedEventArgs<IndexedItem<StringValue>> e) {
|
---|
170 | OnChanged();
|
---|
171 | }
|
---|
172 |
|
---|
173 | private void Parameter_ValueChanged(object sender, EventArgs e) {
|
---|
174 | OnChanged();
|
---|
175 | }
|
---|
176 |
|
---|
177 | public event EventHandler Changed;
|
---|
178 | protected virtual void OnChanged() {
|
---|
179 | var listeners = Changed;
|
---|
180 | if (listeners != null) listeners(this, EventArgs.Empty);
|
---|
181 | }
|
---|
182 |
|
---|
183 | protected virtual bool IsProblemDataCompatible(IDataAnalysisProblemData problemData, out string errorMessage) {
|
---|
184 | errorMessage = string.Empty;
|
---|
185 | if (problemData == null) throw new ArgumentNullException("problemData", "The provided problemData is null.");
|
---|
186 |
|
---|
187 | //check allowed input variables
|
---|
188 | StringBuilder message = new StringBuilder();
|
---|
189 | var variables = new HashSet<string>(problemData.InputVariables.Select(x => x.Value));
|
---|
190 | foreach (var item in AllowedInputVariables) {
|
---|
191 | if (!variables.Contains(item))
|
---|
192 | message.AppendLine("Input variable '" + item + "' is not present in the new problem data.");
|
---|
193 | }
|
---|
194 |
|
---|
195 | if (message.Length != 0) {
|
---|
196 | errorMessage = message.ToString();
|
---|
197 | return false;
|
---|
198 | }
|
---|
199 | return true;
|
---|
200 |
|
---|
201 | }
|
---|
202 |
|
---|
203 | public virtual void AdjustProblemDataProperties(IDataAnalysisProblemData problemData) {
|
---|
204 | DataAnalysisProblemData data = problemData as DataAnalysisProblemData;
|
---|
205 | if (data == null) throw new ArgumentException("The problem data is not a data analysis problem data. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData");
|
---|
206 |
|
---|
207 | string errorMessage;
|
---|
208 | if (!data.IsProblemDataCompatible(this, out errorMessage)) {
|
---|
209 | throw new InvalidOperationException(errorMessage);
|
---|
210 | }
|
---|
211 |
|
---|
212 | foreach (var inputVariable in InputVariables) {
|
---|
213 | var variable = data.InputVariables.FirstOrDefault(i => i.Value == inputVariable.Value);
|
---|
214 | InputVariables.SetItemCheckedState(inputVariable, variable != null && data.InputVariables.ItemChecked(variable));
|
---|
215 | }
|
---|
216 |
|
---|
217 | TrainingPartition.Start = TrainingPartition.End = 0;
|
---|
218 | TestPartition.Start = 0;
|
---|
219 | TestPartition.End = Dataset.Rows;
|
---|
220 | }
|
---|
221 | }
|
---|
222 | }
|
---|