Questions tagged [libsvmsharp]

LibSVM# is a C# port of java version of libsvm, a library for several SVM methods. This project also provides F# bindings.

LibSVM# is a C# port of java version of libsvm, a library for several SVM methods. This project also provides F# bindings.

For more information about SVM, see original libsvm practical guide and implementation details.

At this time the aim of the project to provide a .NET version of the core library only, without additional tools provided by libsvm project, like command-line tools (svm-train, svm-predict, etc) or svm-toy.

Current LibSvmSharp version is based on libsvm 3.20.

Solution Details

The Solution consists of 6 projects:

  • LibSvm – main LibSvmSharp project. It's a port of original libsvm java source (with some modifications and refactorings to make it looks in C# style). The code kept as close as possible to original codebase, so it can be easily updated to reflect changes in the libsvm.
  • LibSvmDemo – Sample project for demonstration of how LibSvm assenbly can be used.
  • LibSvmExtras – contains some helpers, provides more convenient way to create and configure SVMs.

  • LibSvmExtrasDemo – demo project for LibSvmExtras assembly.

  • LibSvmFs – F# wrapper for LibSvm.

  • LibSvmFsDemo – demo project for LibSvmFs.

Differencies from libsvm

There is only one big difference, that can affect you. The libsvm implementation stores features as sparse vectors (most feature values are zero), so feature vectors represented as array of index-value pairs.

3 questions
1
vote
1 answer

Using machine learning to estimate likelihood of an even occurrence given a stream of data

I have a stream of data (e.g. 3D position) generating by a system which it looks like: (pos1, time1) (Pos2, time2) (pos3, time3) ... I want to use a machine learning technique to estimate the likelihood (or detect) of a particular event from given…
user1021110
  • 213
  • 1
  • 6
  • 13
1
vote
0 answers

How to use LibSVMsharp with x64 libSVM

i have downloaded LibSVMsharp via nugget package. I have visual studio 2013 and using .net 4.5.2 wpf application It works in x86 however i want to use x64 libsvm So i followed the instructions to built my own x64 libsvm I did it successfully but i…
Furkan Gözükara
  • 22,964
  • 77
  • 205
  • 342
0
votes
0 answers

Trouble loading the training dataset in LibSVMSharp

If anyone is familiar with libSVM (https://www.csie.ntu.edu.tw/~cjlin/libsvm/), I am working with libSVMsharp, which is the same thing, in a C# wrapper, I believe. On their github, they give the following example of how to write a simple…
cl001
  • 73
  • 1
  • 5