mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-17 10:45:10 +00:00
30 lines
675 B
PHP
30 lines
675 B
PHP
|
<?php
|
||
|
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace tests\Phpml\Dataset;
|
||
|
|
||
|
use Phpml\Dataset\ArrayDataset;
|
||
|
|
||
|
class ArrayDatasetTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @expectedException \Phpml\Exception\InvalidArgumentException
|
||
|
*/
|
||
|
public function testThrowExceptionOnInvalidArgumentsSize()
|
||
|
{
|
||
|
new ArrayDataset([0, 1], [0]);
|
||
|
}
|
||
|
|
||
|
public function testArrayDataset()
|
||
|
{
|
||
|
$dataset = new ArrayDataset(
|
||
|
$samples = [[1], [2], [3], [4]],
|
||
|
$labels = ['a', 'a', 'b', 'b']
|
||
|
);
|
||
|
|
||
|
$this->assertEquals($samples, $dataset->getSamples());
|
||
|
$this->assertEquals($labels, $dataset->getLabels());
|
||
|
}
|
||
|
}
|