Changeset 14396
- Timestamp:
- 11/15/16 22:06:40 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisProblemData.cs
r14185 r14396 73 73 } 74 74 75 public double[,] AllowedInputsTrainingValues { 76 get { return Dataset.ToArray(AllowedInputVariables, TrainingIndices); } 77 } 78 79 public double[,] AllowedInputsTestValues { get { return Dataset.ToArray(AllowedInputVariables, TestIndices); } } 75 80 public IntRange TrainingPartition { 76 81 get { return TrainingPartitionParameter.Value; } -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisProblemData.cs
r14185 r14396 33 33 IEnumerable<string> AllowedInputVariables { get; } 34 34 35 double[,] AllowedInputsTrainingValues { get; } 36 double[,] AllowedInputsTestValues { get; } 37 35 38 IntRange TrainingPartition { get; } 36 39 IntRange TestPartition { get; }
Note: See TracChangeset
for help on using the changeset viewer.