Files
Reseaux-de-neurones-artific…/app/Services/IPerceptronIterationEventBuffer.php
Matthias Guillitte 6abb417430 Added Limited Epoch Event Buffer
for better frontend performance when using big  max epoch number
2026-03-21 09:42:05 +01:00

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 ;
}