Files
perceptron-viewer/config/perceptron.php
T
Ninluc 8a50f492ac
linter / quality (push) Successful in 4m23s
tests / ci (8.4) (push) Successful in 4m35s
tests / ci (8.5) (push) Successful in 5m13s
Various fixess and xor
2026-09-08 18:40:56 +02:00

34 lines
975 B
PHP

<?php
return [
/**
* Minimum number of iterations for which the broadcast of the training progress is allowed in full.
* Beyond this number of iterations, the broadcast will be splitted every x iterations,
* x is limited_broadcast_number
*/
'limited_broadcast_iterations' => 100,
/**
* How much broadcasts is sent when in limmited broadcast mode
*/
'limited_broadcast_number' => 100,
/**
* The maximum number of iterations that can be sent in a single broadcast.
*/
'broadcast_iteration_size' => 75,
/**
* Maximum number of weights for which all iteration weights are broadcast
* and displayed in the iteration table.
*/
'max_displayed_weights' => 5,
'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',
]
];