Php/docs/function.fann-train-on-file

提供:Dev Guides
< Php
2020年12月14日 (月) 11:05時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

fann_train_on_file

(PECL fann >= 1.0.0)

fann_train_on_fileTrains on an entire dataset, which is read from file, for a period of time


説明

fann_train_on_file ( resource $ann , string $filename , int $max_epochs , int $epochs_between_reports , float $desired_error ) : bool

Trains on an entire dataset, which is read from file, for a period of time.

This training uses the training algorithm chosen by fann_set_training_algorithm() and the parameters set for these training algorithms.


パラメータ

ann
ニューラルネットワークリソース。
filename
The file containing train data
max_epochs
The maximum number of epochs the training should continue
epochs_between_reports
The number of epochs between calling a user function. A value of zero means that user function is not called.
desired_error
The desired fann_get_MSE() or fann_get_bit_fail(), depending on the stop function chosen by fann_set_train_stop_function()


返り値

成功した場合に true、それ以外の場合に false を返します。


参考