1 min readOct 7, 2018
//Set the input data into the first layer
for (int j = 0; j < X.Data[i].Length; j++)
{
inputLayer.Neurons[j].OutputPulse.Value = X.Data[i][j];
}
Don’t understand why set the input data to OutputPulse.