Added Limited Epoch Event Buffer
for better frontend performance when using big max epoch number
This commit is contained in:
10
app/Services/IPerceptronIterationEventBuffer.php
Normal file
10
app/Services/IPerceptronIterationEventBuffer.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
interface IPerceptronIterationEventBuffer {
|
||||
|
||||
public function flush(): void ;
|
||||
|
||||
public function addIteration(int $iteration, int $exampleIndex, float $error, array $synaptic_weights): void ;
|
||||
}
|
||||
Reference in New Issue
Block a user