php-ml/src/Dataset/Dataset.php

13 lines
164 B
PHP
Raw Normal View History

2016-02-28 21:54:21 +00:00
<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-04-06 19:46:17 +00:00
namespace Phpml\Dataset;
interface Dataset
2016-02-28 21:54:21 +00:00
{
public function getSamples(): array;
2016-04-06 19:46:17 +00:00
public function getTargets(): array;
2016-02-28 21:54:21 +00:00
}