8 lines
125 B
PHP
8 lines
125 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
interface ISynapticWeightsProvider {
|
|
public function generate(int $input_size): array;
|
|
}
|