mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 04:57:52 +00:00
39 lines
981 B
PHP
39 lines
981 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\Dataset;
|
|
|
|
use Phpml\Dataset\CsvDataset;
|
|
|
|
class CsvDatasetTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @expectedException \Phpml\Exception\DatasetException
|
|
*/
|
|
public function testThrowExceptionOnMissingFile()
|
|
{
|
|
new CsvDataset('missingFile', 3);
|
|
}
|
|
|
|
public function testSampleCsvDatasetWithHeaderRow()
|
|
{
|
|
$filePath = dirname(__FILE__).'/Resources/dataset.csv';
|
|
|
|
$dataset = new CsvDataset($filePath, 2, true);
|
|
|
|
$this->assertEquals(10, count($dataset->getSamples()));
|
|
$this->assertEquals(10, count($dataset->getTargets()));
|
|
}
|
|
|
|
public function testSampleCsvDatasetWithoutHeaderRow()
|
|
{
|
|
$filePath = dirname(__FILE__).'/Resources/dataset.csv';
|
|
|
|
$dataset = new CsvDataset($filePath, 2, false);
|
|
|
|
$this->assertEquals(11, count($dataset->getSamples()));
|
|
$this->assertEquals(11, count($dataset->getTargets()));
|
|
}
|
|
}
|