- Timestamp:
- 04/02/14 11:38:44 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs
r10676 r10695 93 93 problem.ProblemDataParameter.ActualValue = data; 94 94 problem.Name = "Preprocessed " + problem.Name; 95 96 var symbolicProblem = problem as ISymbolicDataAnalysisProblem;97 if (symbolicProblem != null) {98 var tree = new SymbolicExpressionTree(new ProgramRootSymbol().CreateTreeNode());99 var variableNode = (VariableTreeNode)new Variable("dummy", "dummy description").CreateTreeNode();100 variableNode.VariableName = "dummy";101 tree.Root.AddSubtree(variableNode);102 103 symbolicProblem.TransformationsParameter.Value.Add(tree);104 }105 106 95 return clone; 107 96 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10586 r10695 39 39 40 40 protected double trainingToTestRatio; 41 42 protected IList<ITransformation> transformations; 41 43 42 44 protected PreprocessingData(PreprocessingData original, Cloner cloner) … … 161 163 } 162 164 165 public IList<ITransformation> Transformations { 166 get { return transformations; } 167 } 168 163 169 public string GetVariableName(int columnIndex) { 164 170 return variableNames[columnIndex];
Note: See TracChangeset
for help on using the changeset viewer.