Refactored into folders
This commit is contained in:
11
app/Services/DatasetReader/IDataSetReader.php
Normal file
11
app/Services/DatasetReader/IDataSetReader.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\DatasetReader;
|
||||
|
||||
interface IDataSetReader {
|
||||
public function getNextLine(): array | null;
|
||||
public function getInputSize(): int;
|
||||
public function reset(): void;
|
||||
public function getLastReadLineIndex(): int;
|
||||
public function getEpochExamplesCount(): int;
|
||||
}
|
||||
Reference in New Issue
Block a user