SVM.NET
Latest Stable Version - 1.6.3
This is an clean .NET conversion of libsvm 2.89, specifically from the Java version. Full functionality and efficiency is maintained, but the object structure has been modified to be more appropriate for the .NET platform (including C# and VB.NET). More information on the libsvm library can be found here. Using the library is quite straightforward. For example, if you have downloaded the sample data, then (using C#) you would train and test an SVM in the following manner:
Each class which needs to be saved has a Write() and Read() method that can be used for that purpose. Problem files are of the form:
Please refer to the libsvm site for more tutorials or information on support vector machines.
Revision Information
Version 1.6.3 (9/22/2009)
- Fixed culture invariance so it doesn't permanently override the existing culture.
- Fixed an off-by-one bug in GaussianTransform.Transform()
Version 1.6.2 (9/9/2009)
- Added culture invariance to the Write() and Read() methods
Version 1.6.1 (8/3/2009)
- Fixed minor bug where passing a null argument for outputFile into ParameterSelection.Grid() resulted in a error.
Version 1.6 (7/12/2009)
- Fixed major bug in Kernel.cs with computeSquaredDistance()
- Fixed major bug in svm_predict_probability where a two dimensional array was being intialized incorrectly.
- Changed the way in which Scaling works. RangeTransform and GaussianTransform both have a Compute() method, which will compute the transform from a problem. They also have a Scale() method, which will scale a problem using that IRangeTransform object.
Version 1.5 (6/7/2009)
- Updated to libsvm 2.89
- Optimized Cache class and Kernel methods
- Fixed bug with PerformanceEvaluator for multiple category problems
Version 1.4 (9/3/2008)
- Added PerformanceEvaluator and RankPair classes which enable easy evaluation using Precision/Recall and Receiver Operating Characteristic Curves
- Added PrecomputedKernel class, which makes it easier to train SVMs using custom kernels.
- Small changes to improve performance. See documentation for details.
Version 1.3 (9/17/2007)
- Updated to libsvm 2.84
Version 1.2 (3/27/2007)
- Added the ability to predict class membership and probabilities for a single vector to the Prediction class.
- Added the GaussianTransform class.
- Fixed minor bugs and completed documentation.
Version 1.1 (2/19/2007)
- Fixed a bug when writing to file, where the existing file wouldn't be completely overwritten.
- Updated documentation.
Version 1.0 (2/16/2007)
- First public release.
