views:

489

answers:

5

Can anyone recommend a good open-source .NET neural network library?

Thanks!

+1  A: 

Best .NET neural network library is AForge

Links:

MainPage

CodeProject-Article

DreamWalker
A: 

From what I can see: FANN fits both of the categories.

monksy
A: 

NeuronDotNet It is not as broad in its scope as AForge, but its exclusive focus on NN makes it maybe more readily accessible, and possibly more featured in this area.

mjv
+1  A: 

Encog is a free open source neural network API for both Java and DotNet.

http://www.heatonresearch.com/encog

JeffHeaton
+1  A: 

Download Weka and convert from the jar file (Java bytecode) to .NET Framework (managed) dll through IKVM. Weka is aknowledged by many as a very good open-source library for machine learning. It includes neural networks.

lmsasu