Changeset 13270
- Timestamp:
- 11/19/15 10:14:17 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs
r13238 r13270 212 212 IEnumerable<int> rows = problemData.TrainingIndices; 213 213 214 //extract SVM parameters from scope and set them215 214 svm_parameter parameter = new svm_parameter { 216 215 svm_type = svmType, -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorRegression.cs
r13238 r13270 229 229 IEnumerable<int> rows = problemData.TrainingIndices; 230 230 231 //extract SVM parameters from scope and set them232 231 svm_parameter parameter = new svm_parameter { 233 232 svm_type = GetSvmType(svmType),
Note: See TracChangeset
for help on using the changeset viewer.