예제 #1
0
파일: mlp.cpp 프로젝트: kenoir/mlp
void mlp::printWeights(){
  cout << "Hidden Layer: " << endl;
  hiddenLayer->printWeights();
  cout << "Output Layer: " << endl;
  outputLayer->printWeights();
}