LibSVMsharp icon indicating copy to clipboard operation
LibSVMsharp copied to clipboard

C# wrapper of LibSVM

Results 11 LibSVMsharp issues
Sort by recently updated
recently updated
newest added

When I run the example of classification, the function of SaveModel returns true, but there is no model file created.

Supports .Net Standard 2.0 Update the Test projects with NUnit.Framework.

The sentinel index value for nodes is -1, not 0.

https://github.com/ccerhan/LibSVMsharp/blob/58e04ae6bb4923d86f9e8948310f03dcad7ce2df/LibSVMsharp/Extensions/SVMProblemExtensions.cs#L85 Should this be a call to [PredictValues](https://github.com/ccerhan/LibSVMsharp/blob/58e04ae6bb4923d86f9e8948310f03dcad7ce2df/LibSVMsharp/Extensions/SVMNodeExtensions.cs#L36) rather than [PredictProbability](https://github.com/ccerhan/LibSVMsharp/blob/58e04ae6bb4923d86f9e8948310f03dcad7ce2df/LibSVMsharp/Extensions/SVMNodeExtensions.cs#L28)?

hello, I'm using your project to support my experiments in C#. When I set up the parameters of LibSVMsharp: parameter.C = 6, parameter.Gamma = 0, parameter.Degree=3, it gives me a...

Hello, Sorry to disturb you! I'm a beginner of C#, and I have a project, by using Kinect to capture the feature points of faces to classify different emotions (I'm...

I wanted to use SVM.PredictProbability but unfortunately the method crashes: This can reproduce the issue: SVMProblem trainingSet = SVMProblemHelper.Load(@"problem.txt"); SVMParameter parameter = new SVMParameter(); parameter.Type = SVMType.C_SVC; parameter.Kernel = SVMKernelType.RBF;...

Hello. I am trying to use weights for each class. When i call ``` double[] testResults = testSet.Predict(model); ``` The error happens inside SVMModel.Free(ptr_model); ``` public static double[] Predict(this SVMProblem...

When i call LibSVM inside task this error happens after second task started. If i call libsvm inside main thread, no error happens ever. If i only start 1 task...

Does this only support X64 version if used in visual studio C#? If I need to run it in X86 now how do I go about it? After switching to...