mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 17:57:11 +00:00
24 lines
508 B
PHP
24 lines
508 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Tests\Dataset\Demo;
|
|
|
|
use Phpml\Dataset\Demo\WineDataset;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class WineDatasetTest extends TestCase
|
|
{
|
|
public function testLoadingWineDataset(): void
|
|
{
|
|
$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]);
|
|
}
|
|
}
|