Files
perceptron-viewer/config/perceptron.php
T
Ninluc 6d4fdffee9
linter / quality (push) Successful in 5m1s
tests / ci (8.4) (push) Successful in 5m8s
tests / ci (8.5) (push) Successful in 6m31s
Wiki
2026-09-15 19:44:58 +02:00

36 lines
911 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 limited broadcast mode
*/
'limited_broadcast_number' => 100,
/**
* The maximum number of iterations that can be sent in a single broadcast.
*/
'broadcast_iteration_size' => 75,
/**
* Minimum time between training progress broadcasts, in milliseconds.
*/
'broadcast_minimum_interval_ms' => 0,
/**
* Maximum number of weights for which all iteration weights are broadcast
* and displayed in the iteration table.
*/
'max_displayed_weights' => 5,
'max_iterations' => 5000,
];