Exemple #1
0
void mlp::printWeights(){
  cout << "Hidden Layer: " << endl;
  hiddenLayer->printWeights();
  cout << "Output Layer: " << endl;
  outputLayer->printWeights();
}