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