Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fann_get_cascade_candidate_stagnation_epochs(3) [php man page]

FANN_GET_CASCADE_CANDIDATE_STAGNATION_EPOCHS(3) 			 1			   FANN_GET_CASCADE_CANDIDATE_STAGNATION_EPOCHS(3)

fann_get_cascade_candidate_stagnation_epochs - Returns the number of cascade candidate stagnation epochs

SYNOPSIS
float fann_get_cascade_candidate_stagnation_epochs (resource $ann) DESCRIPTION
The number of cascade candidate stagnation epochs determines the number of epochs training is allowed to continue without changing the MSE by a fraction of fann_get_cascade_candidate_change_fraction(3). See more info about this parameter in fann_get_cascade_candidate_change_fraction(3). The default number of cascade candidate stagnation epochs is 12. PARAMETERS
o $ann -Neural network resource. RETURN VALUES
The number of cascade candidate stagnation epochs, or FALSE on error. SEE ALSO
fann_set_cascade_candidate_stagnation_epochs(3), fann_get_cascade_candidate_change_fraction(3). PHP Documentation Group FANN_GET_CASCADE_CANDIDATE_STAGNATION_EPOCHS(3)

Check Out this Related Man Page

FANN_TRAIN_ON_FILE(3)							 1						     FANN_TRAIN_ON_FILE(3)

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

SYNOPSIS
bool fann_train_on_file (resource $ann, string $filename, int $max_epochs, int $epochs_between_reports, float $desired_error) DESCRIPTION
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(3) and the parameters set for these training algorithms. PARAMETERS
o $ann -Neural network resource. o $filename - The file containing train data o $max_epochs - The maximum number of epochs the training should continue o $epochs_between_reports - The number of epochs between calling a user function. A value of zero means that user function is not called. o $desired_error - The desired fann_get_MSE(3) or fann_get_bit_fail(3), depending on the stop function chosen by fann_set_train_stop_function(3) RETURN VALUES
Returns TRUE on success, or FALSE otherwise. SEE ALSO
fann_train_on_data(3), fann_train_epoch(3), fann_get_bit_fail(3), fann_get_MSE(3), fann_set_train_stop_function(3), fann_set_training_algo- rithm(3), fann_set_callback(3). PHP Documentation Group FANN_TRAIN_ON_FILE(3)
Man Page