mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-17 02:35:09 +00:00
39 lines
935 B
PHP
39 lines
935 B
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace Phpml\Dataset;
|
|
|
|
use Phpml\Exception\DatasetException;
|
|
|
|
class CsvDataset extends ArrayDataset
|
|
{
|
|
/**
|
|
* @param string $filepath
|
|
* @param int $features
|
|
* @param bool $headingRow
|
|
*
|
|
* @throws DatasetException
|
|
*/
|
|
public function __construct(string $filepath, int $features, bool $headingRow = true)
|
|
{
|
|
if (!file_exists($filepath)) {
|
|
throw DatasetException::missingFile(basename($filepath));
|
|
}
|
|
|
|
if (false === $handle = fopen($filepath, 'r')) {
|
|
throw DatasetException::cantOpenFile(basename($filepath));
|
|
}
|
|
|
|
if ($headingRow) {
|
|
fgets($handle);
|
|
}
|
|
|
|
while (($data = fgetcsv($handle, 1000, ',')) !== false) {
|
|
$this->samples[] = array_slice($data, 0, $features);
|
|
$this->targets[] = $data[$features];
|
|
}
|
|
fclose($handle);
|
|
}
|
|
}
|