php-ml/tests/Phpml/NeuralNetwork/Node/BiasTest.php

18 lines
299 B
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
namespace tests\Phpml\NeuralNetwork\Node;
use Phpml\NeuralNetwork\Node\Bias;
class BiasTest extends \PHPUnit_Framework_TestCase
{
public function testBiasOutput()
{
$bias = new Bias();
$this->assertEquals(1.0, $bias->getOutput());
}
}