Example #1
0
File: Neuron.php Project: 0-php/AI
 /**
  * @uses Maths::randomWeight()
  */
 protected function initializeWeights()
 {
     foreach ($this->arrInputs as $intKey => $floatInput) {
         $this->arrWeights[$intKey] = Maths::randomWeight();
     }
 }