Refactored into folders

This commit is contained in:
2026-03-22 10:42:08 +01:00
parent 977c259cb9
commit 4717254da4
18 changed files with 258 additions and 44 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace Tests\Services\IterationEventBuffer;
use App\Services\IterationEventBuffer\IPerceptronIterationEventBuffer;
class DullIterationEventBuffer implements IPerceptronIterationEventBuffer {
public function __construct(
) {
}
public function flush(): void {
return;
}
public function addIteration(int $epoch, int $exampleIndex, float $error, array $synaptic_weights): void {
return;
}
}