11 lines
249 B
PHP
11 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Services\IterationEventBuffer;
|
|
|
|
interface IPerceptronIterationEventBuffer
|
|
{
|
|
public function flush(): void;
|
|
|
|
public function addIteration(int $iteration, int $exampleIndex, float $error, array $synaptic_weights): void;
|
|
}
|