2016-04-09 15:33:05 +02:00
|
|
|
<?php
|
|
|
|
|
2016-11-20 22:53:17 +01:00
|
|
|
declare(strict_types=1);
|
2016-04-09 15:33:05 +02:00
|
|
|
|
|
|
|
namespace tests\Phpml\Dataset\Demo;
|
|
|
|
|
2016-09-30 14:02:08 +02:00
|
|
|
use Phpml\Dataset\Demo\WineDataset;
|
2017-02-03 12:58:25 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-04-09 15:33:05 +02:00
|
|
|
|
2017-02-03 12:58:25 +01:00
|
|
|
class WineDatasetTest extends TestCase
|
2016-04-09 15:33:05 +02:00
|
|
|
{
|
|
|
|
public function testLoadingWineDataset()
|
|
|
|
{
|
2016-09-30 14:02:08 +02:00
|
|
|
$wine = new WineDataset();
|
2016-04-09 15:33:05 +02:00
|
|
|
|
|
|
|
// whole dataset
|
2016-12-12 19:31:30 +01:00
|
|
|
$this->assertCount(178, $wine->getSamples());
|
|
|
|
$this->assertCount(178, $wine->getTargets());
|
2016-04-09 15:33:05 +02:00
|
|
|
|
|
|
|
// one sample features count
|
2016-12-12 19:31:30 +01:00
|
|
|
$this->assertCount(13, $wine->getSamples()[0]);
|
2016-04-09 15:33:05 +02:00
|
|
|
}
|
|
|
|
}
|