Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Breadcrumbs/HeuristicLab.DataPreprocessing/3.4/ProblemDataCreator.cs @ 11594

Last change on this file since 11594 was 11594, checked in by jkarder, 9 years ago

#2116: merged r10041-r11593 from trunk into branch

File size: 4.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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 HeuristicLab.Common;
26using HeuristicLab.Problems.DataAnalysis;
27
28namespace HeuristicLab.DataPreprocessing {
29  public class ProblemDataCreator {
30
31    private readonly IPreprocessingContext context;
32
33    private Dataset ExportedDataset {
34      get {
35        return context.Data.ExportToDataset();
36      }
37    }
38
39    private IList<ITransformation> Transformations { get { return context.Data.Transformations; } }
40
41    public ProblemDataCreator(IPreprocessingContext context) {
42      this.context = context;
43    }
44
45    public IDataAnalysisProblemData CreateProblemData() {
46      if (context.Data.Rows == 0 || context.Data.Columns == 0) return null;
47
48      var oldProblemData = context.ProblemData;
49      IDataAnalysisProblemData problemData;
50
51      if (oldProblemData is RegressionProblemData) {
52        problemData = CreateRegressionData((RegressionProblemData)oldProblemData);
53      } else if (oldProblemData is ClassificationProblemData) {
54        problemData = CreateClassificationData((ClassificationProblemData)oldProblemData);
55      } else if (oldProblemData is ClusteringProblemData) {
56        problemData = CreateClusteringData((ClusteringProblemData)oldProblemData);
57      } else {
58        throw new NotImplementedException("The type of the DataAnalysisProblemData is not supported.");
59      }
60
61      SetTrainingAndTestPartition(problemData);
62      // set the input variables to the correct checked state
63      var inputVariables = problemData.InputVariables.ToDictionary(x => x.Value, x => x);
64      foreach (var variable in oldProblemData.InputVariables) {
65        bool @checked = oldProblemData.InputVariables.ItemChecked(variable);
66        problemData.InputVariables.SetItemCheckedState(inputVariables[variable.Value], @checked);
67      }
68
69      return problemData;
70    }
71
72    private IDataAnalysisProblemData CreateRegressionData(RegressionProblemData oldProblemData) {
73      var targetVariable = oldProblemData.TargetVariable;
74      // target variable must be double and must exist in the new dataset
75      return new RegressionProblemData(ExportedDataset, GetDoubleInputVariables(targetVariable), targetVariable, Transformations);
76    }
77
78    private IDataAnalysisProblemData CreateClassificationData(ClassificationProblemData oldProblemData) {
79      var targetVariable = oldProblemData.TargetVariable;
80      // target variable must be double and must exist in the new dataset
81      return new ClassificationProblemData(ExportedDataset, GetDoubleInputVariables(targetVariable), targetVariable, Transformations);
82    }
83
84    private IDataAnalysisProblemData CreateClusteringData(ClusteringProblemData oldProblemData) {
85      return new ClusteringProblemData(ExportedDataset, GetDoubleInputVariables(String.Empty), Transformations);
86    }
87
88    private void SetTrainingAndTestPartition(IDataAnalysisProblemData problemData) {
89      var ppData = context.Data;
90
91      problemData.TrainingPartition.Start = ppData.TrainingPartition.Start;
92      problemData.TrainingPartition.End = ppData.TrainingPartition.End;
93      problemData.TestPartition.Start = ppData.TestPartition.Start;
94      problemData.TestPartition.End = ppData.TestPartition.End;
95    }
96
97    private IEnumerable<string> GetDoubleInputVariables(string targetVariable) {
98      var variableNames = new List<string>();
99      for (int i = 0; i < context.Data.Columns; ++i) {
100        var variableName = context.Data.GetVariableName(i);
101        if (context.Data.VariableHasType<double>(i)
102          && variableName != targetVariable
103          && IsNotConstantInputVariable(context.Data.GetValues<double>(i))) {
104
105          variableNames.Add(variableName);
106        }
107      }
108      return variableNames;
109    }
110
111    private bool IsNotConstantInputVariable(IList<double> list) {
112      return context.Data.TrainingPartition.End - context.Data.TrainingPartition.Start > 1 || list.Range() > 0;
113    }
114  }
115}
Note: See TracBrowser for help on using the repository browser.