Exemplo n.º 1
0
Arquivo: mlp.cpp Projeto: kenoir/mlp
float mlp::addWeights(){
  float tempVal = 0;
  tempVal += hiddenLayer->addWeights();
  tempVal += outputLayer->addWeights();

  return tempVal;
}