- Timestamp:
- 07/06/17 11:12:18 (8 years ago)
- Location:
- stable/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisProblemData.cs
r14186 r15142 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; } -
stable/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/ITransformation.cs
r14186 r15142 30 30 31 31 public interface ITransformation<T> : ITransformation { 32 void ConfigureParameters(IEnumerable<T> data); 33 IEnumerable<T> ConfigureAndApply(IEnumerable<T> data); 32 34 IEnumerable<T> Apply(IEnumerable<T> data); 33 35 }
Note: See TracChangeset
for help on using the changeset viewer.