Changeset 6182 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs
- Timestamp:
- 05/11/11 15:32:18 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs
r5914 r6182 122 122 Dataset dataset = problemData.Dataset; 123 123 string targetVariable = problemData.TargetVariable; 124 int start = problemData.TrainingPartition.Start; 125 int end = problemData.TrainingPartition.End; 126 IEnumerable<int> rows = Enumerable.Range(start, end - start); 124 IEnumerable<int> rows = problemData.TrainingIndizes; 127 125 128 126 //extract SVM parameters from scope and set them
Note: See TracChangeset
for help on using the changeset viewer.