コード例 #1
0
ファイル: ml_ann.cpp プロジェクト: cmuartfab/ml-lib
 void ann::set_max_epochs(int max_epochs)
 {
     grt_ann.setMaxNumEpochs(max_epochs);
 }
コード例 #2
0
ファイル: ml_mlp.cpp プロジェクト: FredVoisin/ml-lib
 void mlp::set_max_epochs(int max_epochs)
 {
     grt_mlp.setMaxNumEpochs(max_epochs);
 }