Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/04/14 15:52:07 (10 years ago)
Author:
mkommend
Message:

#2234: Fixed bug in svm classification regarding the parameter extraction.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorClassification.cs

    r11337 r11340  
    143143    public static SupportVectorClassificationSolution CreateSupportVectorClassificationSolution(IClassificationProblemData problemData, IEnumerable<string> allowedInputVariables,
    144144      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, GetKernelType(svmType), GetKernelType(kernelType), cost, nu, gamma, degree,
     145      return CreateSupportVectorClassificationSolution(problemData, allowedInputVariables, GetSvmType(svmType), GetKernelType(kernelType), cost, nu, gamma, degree,
    146146        out trainingAccuracy, out testAccuracy, out nSv);
    147147    }
Note: See TracChangeset for help on using the changeset viewer.