Multilayer neuron network
linter / quality (push) Successful in 7m10s
tests / ci (8.4) (push) Successful in 4m43s
tests / ci (8.5) (push) Successful in 4m47s

This commit is contained in:
2026-09-08 16:29:02 +02:00
parent 2f4db07918
commit 08aa04fe56
17 changed files with 630 additions and 50 deletions
+13
View File
@@ -14,6 +14,19 @@ return [
*/
'limited_broadcast_number' => 100,
/**
* The maximum number of iterations that can be sent in a single broadcast.
*/
'broadcast_iteration_size' => 75,
/**
* Hide the weight columns in the iteration table above this count.
*/
'max_displayed_weights' => 25,
'run_inputs_validation' => [
'hidden_layers' => 'required|integer|min:1|max:5',
'hidden_layers_neurons' => 'required|integer|min:1|max:5',
'max_iterations' => 'required|integer|min:1|max:5000',
]
];