Наследование: implements Phpml\NeuralNetwork\ActivationFunction
Пример #1
0
 /**
  * @param $expected
  * @param $value
  *
  * @dataProvider binaryStepProvider
  */
 public function testBinaryStepActivationFunction($expected, $value)
 {
     $binaryStep = new BinaryStep();
     $this->assertEquals($expected, $binaryStep->compute($value));
 }