mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 13:07:52 +00:00
23 lines
493 B
PHP
23 lines
493 B
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace tests\Phpml\Dataset\Demo;
|
|
|
|
use Phpml\Dataset\Demo\Iris;
|
|
|
|
class IrisTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testLoadingIrisDataset()
|
|
{
|
|
$iris = new Iris();
|
|
|
|
// whole dataset
|
|
$this->assertEquals(150, count($iris->getSamples()));
|
|
$this->assertEquals(150, count($iris->getLabels()));
|
|
|
|
// one sample features count
|
|
$this->assertEquals(4, count($iris->getSamples()[0]));
|
|
}
|
|
}
|