23 lines
448 B
PHP
23 lines
448 B
PHP
<?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;
|
|
}
|
|
}
|