예제 #1
0
 public void SetIncomingWeights(List <double[]> weights)
 {
     for (int i = 0; i < weights.Count; i++)
     {
         IncomingWeights.SetRow(i, weights[i]);
     }
 }
예제 #2
0
 public void SetIncomingWeightsForNeuron(int neuronIndex, double[] weights)
 {
     IncomingWeights.SetRow(neuronIndex, weights);
 }