Files
Matthias Guillitte 2f4db07918
All checks were successful
linter / quality (push) Successful in 6m16s
tests / ci (8.4) (push) Successful in 4m10s
tests / ci (8.5) (push) Successful in 4m29s
MonoLayer Perceptron
2026-04-04 16:45:04 +02:00

21 lines
381 B
PHP

<?php
namespace App\Services\DatasetReader;
interface IDataSetReader
{
public function getNextLine(): ?array;
public function getInputSize(): int;
public function getOutputSize(): int;
public function getLabels(): array;
public function reset(): void;
public function getLastReadLineIndex(): int;
public function getEpochExamplesCount(): int;
}