示例#1
0
文件: mlp.cpp 项目: kenoir/mlp
float mlp::addWeights(){
  float tempVal = 0;
  tempVal += hiddenLayer->addWeights();
  tempVal += outputLayer->addWeights();

  return tempVal;
}