Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AI and Deep Learning by (50.2k points)

I have read lots of books, sites, and so about ANN programming, but I still have problems with 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 sites:

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

1 Answer

0 votes
by (108k points)

Before understanding how neurons and the neural networks work, let us revisit the structure of a neural network. As you know a neural network consists of several layers, and each layer has a number of neurons in it. Neurons are one layer is connected to multiple or all neurons in the next layer. Input is fed to the neurons in the input layer, and output is obtained from the neurons in the last layer.

                                        image

A Fully Connected 4-4-2 neural network with 4 neurons in the input layer, 4 neurons in the hidden layer and 2 neurons in the output layer.

For implementing it in C#, refer the following link:

https://www.tech-quantum.com/implement-a-simple-neural-network-in-csharp-net-part-1/

Browse Categories

...