Exemplo n.º 1
0
 public void NextFunction()
 {
     if (activationFunctions.Length > 0)
     {
         FunctionIndex++;
         SetImage();
         perceptron.UpdatePerceptron();
     }
 }
Exemplo n.º 2
0
 private void SetText()
 {
     text.text = possibleWeights[WeightIndex].ToString("0.00");
     perceptron.UpdatePerceptron();
 }