Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Artificial Neural Network programming in C# [closed]

I have read lots of books, sites, and so about ANN programming, but I still have problems for writing a program in c# about that.

Many of these books and other sources are in Matlab and other languages, but I searched for C#

I read, for example, this book:

"Introduction to Neural Networks for C#, 2nd Edition Paperback by Jeff Heaton"

and also these sits:

  • http://www.ai-junkie.com/ann/evolved/nnt1.html

  • http://www.c-sharpcorner.com/UploadFile/rmcochran/AI_OOP_NeuralNet06192006090112AM/AI_OOP_NeuralNet.aspx

Now my clear question is this : How can I build a network and link all neuron together in layers?

like image 516
pooria haddad Avatar asked Sep 25 '13 17:09

pooria haddad


People also ask

Can you make a neural network in C?

As part of delving deeper into machine learning concepts, I decided to write a simple neural network from scratch in C, without the help of any vector or matrix libraries.

What programming language is used for artificial neural network?

Python is the ideal coding language used for machine learning, NLP, and neural network connections. Python can be used even if you are new to AI development since it is flexible and comes with pre-existing libraries like Pandas, SciPy, and nltk.

Is machine learning possible in C?

C is a really fast language, and it can be a lot easier to optimize, this can lead to faster algorithms, so it is certainly a great choice for implementing machine-learning algorithms that could take a lot of processing or memory to perform.

What is artificial neural network with example?

An artificial neural network is an attempt to simulate the network of neurons that make up a human brain so that the computer will be able to learn things and make decisions in a humanlike manner. ANNs are created by programming regular computers to behave as though they are interconnected brain cells.


2 Answers

I have already read it all "Introduction to Neural Networks for C#, 2nd Edition Paperback by Jeff Heaton".i think this book explain of all your question clearly.

nerves created with single dimension matrix and communication between fist layer and hidden layer stored in a two dimension and so on.so you have to read chapter first and second again and

write its example your self.

You will get the concept.

like image 98
KF2 Avatar answered Sep 21 '22 21:09

KF2


You should definitely look at the Heaton Research if you're up to write neural networks in C#. They already did it (they call it Encog) and the source code is open.

like image 34
Mirek Avatar answered Sep 20 '22 21:09

Mirek