php-ml/src/Phpml/Dataset/Dataset.php

19 lines
241 B
PHP
Raw Normal View History

2016-02-28 21:54:21 +00:00
<?php
2016-04-06 19:46:17 +00:00
declare (strict_types = 1);
namespace Phpml\Dataset;
interface Dataset
2016-02-28 21:54:21 +00:00
{
2016-04-06 19:46:17 +00:00
/**
* @return array
*/
public function getSamples(): array;
2016-04-06 19:46:17 +00:00
/**
* @return array
*/
2016-06-16 21:56:15 +00:00
public function getTargets(): array;
2016-02-28 21:54:21 +00:00
}