コード例 #1
0
 /// <summary>
 /// Constructor to test training and testing of the neural network with some example data hardcoded
 /// </summary>
 public MLPInterface()
 {
     int[] hiddenStructure = { 18 };
     // 12 Inputs | 7 Outputs | 8 hidden ...
     nn = new MLP(18, 7, hiddenStructure, 0.02F, 0F);
     trainMLP();
 }
コード例 #2
0
 /// <summary>
 /// Constructor to test training and testing of the neural network with some example data hardcoded
 /// </summary>
 public MLPInterface()
 {
     int[] hiddenStructure = {18};
     // 12 Inputs | 7 Outputs | 8 hidden ...
     nn = new MLP(18, 7, hiddenStructure, 0.02F, 0F);
     trainMLP();
 }