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