(PECL fann >= 1.0.0)
fann_train_on_file — 在从某个文件读取的整个数据集上训练一段时间。
$ann
, string $filename
, int $max_epochs
, int $epochs_between_reports
, float $desired_error
) : bool在从某个文件读取的整个数据集上训练一段时间。
该训练使用 fann_set_training_algorithm() 函数选择的算法和这些训练算法设置的参数。
ann
Neural network resource.
filename
包含训练数据的文件。
max_epochs
训练应该继续的最大周期数。
epochs_between_reports
用户函数之间的周期数。当为0时表示没有用户函数被调用。
desired_error
期望的是 fann_get_MSE() 或 fann_get_bit_fail()的返回值, 取决于 fann_set_train_stop_function() 选择的停止函数。
Returns TRUE
on success, or FALSE
otherwise.