mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
19 lines
317 B
PHP
19 lines
317 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Tests\NeuralNetwork\Node;
|
|
|
|
use Phpml\NeuralNetwork\Node\Bias;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class BiasTest extends TestCase
|
|
{
|
|
public function testBiasOutput(): void
|
|
{
|
|
$bias = new Bias();
|
|
|
|
self::assertEquals(1.0, $bias->getOutput());
|
|
}
|
|
}
|