17 lines
297 B
PHP
17 lines
297 B
PHP
<?php
|
|
|
|
namespace App\Services\DatasetReader;
|
|
|
|
interface IDataSetReader
|
|
{
|
|
public function getNextLine(): ?array;
|
|
|
|
public function getInputSize(): int;
|
|
|
|
public function reset(): void;
|
|
|
|
public function getLastReadLineIndex(): int;
|
|
|
|
public function getEpochExamplesCount(): int;
|
|
}
|