Exemple #1
0
void mlp::layersBackprop(float * trainArray){
  outputLayer->neuronBackProp(trainArray);
  hiddenLayer->neuronBackProp(outputLayer);
}