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