August 2018
Beginner
334 pages
10h 19m
English
We will implement two big classes. The first one is the implementation for the Perceptron data type, and the second one is the data type handling the neural network. Go through the following steps to implement these two classes:
public class Perceptron : InputPerceptron
{
public InputPerceptron[] inputList;
public delegate float Threshold(float x);
public Threshold threshold;
public float state;
public float error;
}
public Perceptron(int inputSize)
{
inputList = new InputPerceptron[inputSize];
}
public void FeedForward() ...
Read now
Unlock full access