1<?php
2
3declare(strict_types=1);
4
5namespace Phpml\Dataset;
6
7interface Dataset
8{
9    public function getSamples(): array;
10
11    public function getTargets(): array;
12}
13