Changeset 11340
- Timestamp:
- 09/04/14 15:52:07 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs
r11337 r11340 143 143 public static SupportVectorClassificationSolution CreateSupportVectorClassificationSolution(IClassificationProblemData problemData, IEnumerable<string> allowedInputVariables, 144 144 string svmType, string kernelType, double cost, double nu, double gamma, int degree, out double trainingAccuracy, out double testAccuracy, out int nSv) { 145 return CreateSupportVectorClassificationSolution(problemData, allowedInputVariables, Get KernelType(svmType), GetKernelType(kernelType), cost, nu, gamma, degree,145 return CreateSupportVectorClassificationSolution(problemData, allowedInputVariables, GetSvmType(svmType), GetKernelType(kernelType), cost, nu, gamma, degree, 146 146 out trainingAccuracy, out testAccuracy, out nSv); 147 147 }
Note: See TracChangeset
for help on using the changeset viewer.