mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 16:15:50 +00:00
24 lines
502 B
PHP
24 lines
502 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\Dataset\Demo;
|
|
|
|
use Phpml\Dataset\Demo\WineDataset;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class WineDatasetTest extends TestCase
|
|
{
|
|
public function testLoadingWineDataset()
|
|
{
|
|
$wine = new WineDataset();
|
|
|
|
// whole dataset
|
|
$this->assertCount(178, $wine->getSamples());
|
|
$this->assertCount(178, $wine->getTargets());
|
|
|
|
// one sample features count
|
|
$this->assertCount(13, $wine->getSamples()[0]);
|
|
}
|
|
}
|