- Timestamp:
- 07/03/17 10:57:53 (7 years ago)
- Location:
- trunk/sources/HeuristicLab.DataPreprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing
-
Property
svn:mergeinfo
set to
/branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing merged eligible
-
Property
svn:mergeinfo
set to
-
trunk/sources/HeuristicLab.DataPreprocessing/3.4
-
trunk/sources/HeuristicLab.DataPreprocessing/3.4/Data/PreprocessingData.cs
r14947 r15110 33 33 [Item("PreprocessingData", "Represents data used for preprocessing.")] 34 34 public abstract class PreprocessingData : NamedItem, IPreprocessingData { 35 36 35 public IntRange TrainingPartition { get; set; } 37 36 public IntRange TestPartition { get; set; } 38 37 39 protected IList<ITransformation> transformations; 40 public IList<ITransformation> Transformations { 41 get { return transformations; } 42 } 38 public IList<ITransformation> Transformations { get; protected set; } 43 39 44 40 protected IList<IList> variableValues; … … 85 81 TrainingPartition = (IntRange)original.TrainingPartition.Clone(cloner); 86 82 TestPartition = (IntRange)original.TestPartition.Clone(cloner); 87 transformations = new List<ITransformation>(original.transformations.Select(cloner.Clone));83 Transformations = new List<ITransformation>(original.Transformations.Select(cloner.Clone)); 88 84 89 85 InputVariables = new List<string>(original.InputVariables); … … 97 93 Name = "Preprocessing Data"; 98 94 99 transformations = new List<ITransformation>();95 Transformations = new List<ITransformation>(); 100 96 selection = new Dictionary<int, IList<int>>(); 101 97 … … 166 162 167 163 #region IPreprocessingData Members 168 169 164 public abstract T GetCell<T>(int columnIndex, int rowIndex); 170 165
Note: See TracChangeset
for help on using the changeset viewer.