Are there any machine learning libraries in C#? I'm after something like WEKA. Thank you.
|
closed as not constructive by Kev♦ Jul 15 '12 at 17:28
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There's a neural network library called AForge.net on the codeproject. (Code hosted at Google code) (Also checkout the AForge homepage - According to the homepage, the new version now supports genetic algorithms and machine learning as well. It looks like it's progressed a lot since I last played with it) I don't know it's it's anything like WEKA as I've never used that. (there's also an article on it's usage) |
|||||||
|
|
You can also use Weka with C#. The best solution is to use IKVM, as in this tutorial, although you can also use bridging software. |
|||
|
|
|
I have created an ML library in C# that is designed to work with common POCO objects. |
|||
|
|
|
Weka can be used from C# very easily as Shane stated, using IKVM and some 'glue code'. Folow the tutorial on weka page to create the '.Net version' of weka, then you can try to run the following tests:
First test shows, how you build a classifier and classify a new Example with it, the second one shows, how you can use a persisted classifier from a file to classify an example. If you need too support discrete attributes, some modification will be necessery. The code above uses 2 helper classes:
|
|||
|
|
|
There's also a project called Encog that has C# code. It's maintained by Jeff Heaton, the author of an "Introduction to Neural Network" book I bought a while ago. The codebase Git is here: https://github.com/encog/encog-dotnet-core |
|||
|
|
|
I'm searching for machine learning libraries for .NET as well and found Infer.NET from Microsoft Research on nuget.org/machine-learning: |
|||
|
|