code
stringlengths 17
247k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
function fann_descale_input($ann, $input_vector) {} | Scale data in input vector after get it from ann based on previously calculated parameters
@param resource $ann
@param array $input_vector
@return bool | fann_descale_input | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_descale_output($ann, $output_vector) {} | Scale data in output vector after get it from ann based on previously calculated parameters
@param resource $ann
@param array $output_vector
@return bool | fann_descale_output | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_descale_train($ann, $train_data) {} | Descale input and output data based on previously calculated parameters
@param resource $ann
@param resource $train_data
@return bool | fann_descale_train | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_destroy($ann) {} | Destroys the entire network and properly freeing all the associated memory
@param resource $ann
@return bool | fann_destroy | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_duplicate_train_data($data) {} | Returns an exact copy of a fann train data
@param resource $data
@return resource|false | fann_duplicate_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_activation_function($ann, $layer, $neuron) {} | Returns the activation function
@param resource $ann
@param int $layer
@param int $neuron
@return int|false constant or -1 if the neuron is not defined in the neural network, or false on error. | fann_get_activation_function | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_activation_steepness($ann, $layer, $neuron) {} | Returns the activation steepness for supplied neuron and layer number
@param resource $ann
@param int $layer
@param int $neuron
@return float|false The activation steepness for the neuron or -1 if the neuron is not defined in the neural network, or false on error. | fann_get_activation_steepness | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_bias_array($ann) {} | Get the number of bias in each layer in the network
@param resource $ann
@return array An array of numbers of bias in each layer | fann_get_bias_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_bit_fail_limit($ann) {} | Returns the bit fail limit used during training
@param resource $ann
@return float|false The bit fail limit, or false on error. | fann_get_bit_fail_limit | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_activation_functions_count($ann) {} | Returns the number of cascade activation functions
@param resource $ann
@return int|false The number of cascade activation functions, or false on error. | fann_get_cascade_activation_functions_count | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_activation_functions($ann) {} | Returns the cascade activation functions
@param resource $ann
@return array|false The cascade activation functions, or false on error. | fann_get_cascade_activation_functions | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_activation_steepnesses_count($ann) {} | The number of activation steepnesses
@param resource $ann
@return int|false The number of activation steepnesses, or false on error. | fann_get_cascade_activation_steepnesses_count | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_activation_steepnesses($ann) {} | Returns the cascade activation steepnesses
@param resource $ann
@return array|false The cascade activation steepnesses, or false on error. | fann_get_cascade_activation_steepnesses | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_candidate_change_fraction($ann) {} | Returns the cascade candidate change fraction
@param resource $ann
@return float|false The cascade candidate change fraction, or false on error. | fann_get_cascade_candidate_change_fraction | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_candidate_stagnation_epochs($ann) {} | Returns the number of cascade candidate stagnation epochs
@param resource $ann
@return float|false The number of cascade candidate stagnation epochs, or false on error. | fann_get_cascade_candidate_stagnation_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_max_cand_epochs($ann) {} | Returns the maximum candidate epochs
@param resource $ann
@return int|false The maximum candidate epochs, or false on error. | fann_get_cascade_max_cand_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_max_out_epochs($ann) {} | Returns the maximum out epochs
@param resource $ann
@return int|false The maximum out epochs, or false on error. | fann_get_cascade_max_out_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_min_cand_epochs($ann) {} | Returns the minimum candidate epochs
@param resource $ann
@return int|false The minimum candidate epochs, or false on error. | fann_get_cascade_min_cand_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_min_out_epochs($ann) {} | Returns the minimum out epochs
@param resource $ann
@return int|false The minimum out epochs, or false on error. | fann_get_cascade_min_out_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_num_candidate_groups($ann) {} | Returns the number of candidate groups
@param resource $ann
@return int|false The number of candidate groups, or false on error. | fann_get_cascade_num_candidate_groups | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_num_candidates($ann) {} | Returns the number of candidates used during training
@param resource $ann
@return int|false The number of candidates used during training, or false on error. | fann_get_cascade_num_candidates | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_output_change_fraction($ann) {} | Returns the cascade output change fraction
@param resource $ann
@return float|false The cascade output change fraction, or false on error. | fann_get_cascade_output_change_fraction | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_cascade_output_stagnation_epochs($ann) {} | Returns the number of cascade output stagnation epochs
@param resource $ann
@return int|false The number of cascade output stagnation epochs, or false on error. | fann_get_cascade_output_stagnation_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_connection_array($ann) {} | Get connections in the network
@param resource $ann
@return array An array of connections in the network | fann_get_connection_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_connection_rate($ann) {} | Get the connection rate used when the network was created
@param resource $ann
@return float|false The connection rate used when the network was created, or false on error. | fann_get_connection_rate | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_layer_array($ann) {} | Get the number of neurons in each layer in the network
@param resource $ann
@return array An array of numbers of neurons in each leayer | fann_get_layer_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_MSE($ann) {} | Reads the mean square error from the network
@param resource $ann
@return float|false The mean square error, or false on error. | fann_get_MSE | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_network_type($ann) {} | Get the type of neural network it was created as
@param resource $ann
@return int|false constant, or false on error. | fann_get_network_type | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_num_input($ann) {} | Get the number of input neurons
@param resource $ann
@return int|false Number of input neurons, or false on error | fann_get_num_input | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_num_layers($ann) {} | Get the number of layers in the neural network
@param resource $ann
@return int|false The number of leayers in the neural network, or false on error. | fann_get_num_layers | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_num_output($ann) {} | Get the number of output neurons
@param resource $ann
@return int|false Number of output neurons, or false on error | fann_get_num_output | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_quickprop_decay($ann) {} | Returns the decay which is a factor that weights should decrease in each iteration during quickprop training
@param resource $ann
@return float|false The decay, or false on error. | fann_get_quickprop_decay | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_rprop_decrease_factor($ann) {} | Returns the increase factor used during RPROP training
@param resource $ann
@return float|false The decrease factor, or false on error. | fann_get_rprop_decrease_factor | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_rprop_increase_factor($ann) {} | Returns the increase factor used during RPROP training
@param resource $ann
@return float|false The increase factor, or false on error. | fann_get_rprop_increase_factor | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_sarprop_step_error_shift($ann) {} | Returns the sarprop step error shift
@param resource $ann
@return float|false The sarprop step error shift , or false on error. | fann_get_sarprop_step_error_shift | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_sarprop_step_error_threshold_factor($ann) {} | Returns the sarprop step error threshold factor
@param resource $ann
@return float|false The sarprop step error threshold factor, or false on error. | fann_get_sarprop_step_error_threshold_factor | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_sarprop_temperature($ann) {} | Returns the sarprop temperature
@param resource $ann
@return float|false The sarprop temperature, or false on error. | fann_get_sarprop_temperature | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_sarprop_weight_decay_shift($ann) {} | Returns the sarprop weight decay shift
@param resource $ann
@return float|false The sarprop weight decay shift, or false on error. | fann_get_sarprop_weight_decay_shift | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_total_connections($ann) {} | Get the total number of connections in the entire network
@param resource $ann
@return int|false Total number of connections in the entire network, or false on error | fann_get_total_connections | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_total_neurons($ann) {} | Get the total number of neurons in the entire network
@param resource $ann
@return int|false Total number of neurons in the entire network, or false on error. | fann_get_total_neurons | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_train_error_function($ann) {} | Returns the error function used during training
@param resource $ann
@return int|false The constant, or false on error. | fann_get_train_error_function | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_training_algorithm($ann) {} | Returns the training algorithm
@param resource $ann
@return int|false constant, or false on error. | fann_get_training_algorithm | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_get_train_stop_function($ann) {} | Returns the stop function used during training
@param resource $ann
@return int|false The constant, or false on error. | fann_get_train_stop_function | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_init_weights($ann, $train_data) {} | Initialize the weights using Widrow + Nguyen’s algorithm
@param resource $ann
@param resource $train_data
@return bool | fann_init_weights | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_length_train_data($data) {} | Returns the number of training patterns in the train data
@param resource $data
@return int|false Number of elements in the train data ``resource``, or false on error. | fann_length_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_num_input_train_data($data) {} | Returns the number of inputs in each of the training patterns in the train data
@param resource $data
@return int|false The number of inputs, or false on error. | fann_num_input_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_num_output_train_data($data) {} | Returns the number of outputs in each of the training patterns in the train data
@param resource $data
@return int|false The number of outputs, or false on error. | fann_num_output_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_randomize_weights($ann, $min_weight, $max_weight) {} | Give each connection a random weight between min_weight and max_weight
@param resource $ann
@param float $min_weight
@param float $max_weight
@return bool | fann_randomize_weights | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_read_train_from_file($filename) {} | Reads a file that stores training data
@param string $filename
@return resource|false | fann_read_train_from_file | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_reset_MSE($ann) {} | Resets the mean square error from the network
@param string $ann
@return bool | fann_reset_MSE | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_run($ann, $input) {} | Will run input through the neural network
@param resource $ann
@param array $input
@return array|false Array of output values, or false on error | fann_run | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_save($ann, $configuration_file) {} | Saves the entire network to a configuration file
@param resource $ann
@param string $configuration_file
@return bool | fann_save | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_save_train($data, $file_name) {} | Save the training structure to a file
@param resource $data
@param string $file_name
@return bool | fann_save_train | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_scale_input($ann, $input_vector) {} | Scale data in input vector before feed it to ann based on previously calculated parameters
@param resource $ann
@param array $input_vector
@return bool | fann_scale_input | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_scale_input_train_data($train_data, $new_min, $new_max) {} | Scales the inputs in the training data to the specified range
@param resource $train_data
@param float $new_min
@param float $new_max
@return bool | fann_scale_input_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_scale_output($ann, $output_vector) {} | Scale data in output vector before feed it to ann based on previously calculated parameters
@param resource $ann
@param array $output_vector
@return bool | fann_scale_output | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_scale_output_train_data($train_data, $new_min, $new_max) {} | Scales the outputs in the training data to the specified range
@param resource $train_data
@param float $new_min
@param float $new_max
@return bool | fann_scale_output_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_scale_train_data($train_data, $new_min, $new_max) {} | Scales the inputs and outputs in the training data to the specified range
@param resource $train_data
@param float $new_min
@param float $new_max
@return bool | fann_scale_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_scale_train($ann, $train_data) {} | Scale input and output data based on previously calculated parameters
@param resource $ann
@param resource $train_data
@return bool | fann_scale_train | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_function_hidden($ann, $activation_function) {} | Sets the activation function for all of the hidden layers
@param resource $ann
@param int $activation_function
@return bool | fann_set_activation_function_hidden | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_function_layer($ann, $activation_function, $layer) {} | Sets the activation function for all the neurons in the supplied layer.
@param resource $ann
@param int $activation_function
@param int $layer
@return bool | fann_set_activation_function_layer | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_function_output($ann, $activation_function) {} | Sets the activation function for the output layer
@param resource $ann
@param int $activation_function
@return bool | fann_set_activation_function_output | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_function($ann, $activation_function, $layer, $neuron) {} | Sets the activation function for supplied neuron and layer
@param resource $ann
@param int $activation_function
@param int $layer
@param int $neuron
@return bool | fann_set_activation_function | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_steepness_hidden($ann, $activation_steepness) {} | Sets the steepness of the activation steepness for all neurons in the all hidden layers
@param resource $ann
@param float $activation_steepness
@return bool | fann_set_activation_steepness_hidden | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_steepness_layer($ann, $activation_steepness, $layer) {} | Sets the activation steepness for all of the neurons in the supplied layer number
@param resource $ann
@param float $activation_steepness
@param int $layer
@return bool | fann_set_activation_steepness_layer | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_steepness_output($ann, $activation_steepness) {} | Sets the steepness of the activation steepness in the output layer
@param resource $ann
@param float $activation_steepness
@return bool | fann_set_activation_steepness_output | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_activation_steepness($ann, $activation_steepness, $layer, $neuron) {} | Sets the activation steepness for supplied neuron and layer number
@param resource $ann
@param float $activation_steepness
@param int $layer
@param int $neuron
@return bool | fann_set_activation_steepness | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_bit_fail_limit($ann, $bit_fail_limit) {} | Set the bit fail limit used during training
@param resource $ann
@param float $bit_fail_limit
@return bool | fann_set_bit_fail_limit | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_callback($ann, $callback) {} | Sets the callback function for use during training
@param resource $ann
@param callable $callback
@return bool | fann_set_callback | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_activation_functions($ann, $cascade_activation_functions) {} | Sets the array of cascade candidate activation functions
@param resource $ann
@param array $cascade_activation_functions
@return bool | fann_set_cascade_activation_functions | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_activation_steepnesses($ann, $cascade_activation_steepnesses_count) {} | Sets the array of cascade candidate activation steepnesses
@param resource $ann
@param array $cascade_activation_steepnesses_count
@return bool | fann_set_cascade_activation_steepnesses | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_candidate_change_fraction($ann, $cascade_candidate_change_fraction) {} | Sets the cascade candidate change fraction
@param resource $ann
@param float $cascade_candidate_change_fraction
@return bool | fann_set_cascade_candidate_change_fraction | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_candidate_stagnation_epochs($ann, $cascade_candidate_stagnation_epochs) {} | Sets the number of cascade candidate stagnation epochs
@param resource $ann
@param int $cascade_candidate_stagnation_epochs
@return bool | fann_set_cascade_candidate_stagnation_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_num_candidate_groups($ann, $cascade_num_candidate_groups) {} | Sets the number of candidate groups
@param resource $ann
@param int $cascade_num_candidate_groups
@return bool | fann_set_cascade_num_candidate_groups | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_output_change_fraction($ann, $cascade_output_change_fraction) {} | Sets the cascade output change fraction
@param resource $ann
@param float $cascade_output_change_fraction
@return bool | fann_set_cascade_output_change_fraction | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_cascade_output_stagnation_epochs($ann, $cascade_output_stagnation_epochs) {} | Sets the number of cascade output stagnation epochs
@param resource $ann
@param int $cascade_output_stagnation_epochs
@return bool | fann_set_cascade_output_stagnation_epochs | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_error_log($errdat, $log_file) {} | Sets where the errors are logged to
@param resource $errdat
@param string $log_file
@return void | fann_set_error_log | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_input_scaling_params($ann, $train_data, $new_input_min, $new_input_max) {} | Calculate input scaling parameters for future use based on training data
@param resource $ann
@param resource $train_data
@param float $new_input_min
@param float $new_input_max
@return bool | fann_set_input_scaling_params | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_output_scaling_params($ann, $train_data, $new_output_min, $new_output_max) {} | Calculate output scaling parameters for future use based on training data
@param resource $ann
@param resource $train_data
@param float $new_output_min
@param float $new_output_max
@return bool | fann_set_output_scaling_params | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_quickprop_decay($ann, $quickprop_decay) {} | Sets the quickprop decay factor
@param resource $ann
@param float $quickprop_decay
@return bool | fann_set_quickprop_decay | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_rprop_decrease_factor($ann, $rprop_decrease_factor) {} | Sets the decrease factor used during RPROP training
@param resource $ann
@param float $rprop_decrease_factor
@return bool | fann_set_rprop_decrease_factor | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_rprop_increase_factor($ann, $rprop_increase_factor) {} | Sets the increase factor used during RPROP training
@param resource $ann
@param float $rprop_increase_factor
@return bool | fann_set_rprop_increase_factor | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_sarprop_step_error_shift($ann, $sarprop_step_error_shift) {} | Sets the sarprop step error shift
@param resource $ann
@param float $sarprop_step_error_shift
@return bool | fann_set_sarprop_step_error_shift | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_sarprop_step_error_threshold_factor($ann, $sarprop_step_error_threshold_factor) {} | Sets the sarprop step error threshold factor
@param resource $ann
@param float $sarprop_step_error_threshold_factor
@return bool | fann_set_sarprop_step_error_threshold_factor | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_sarprop_weight_decay_shift($ann, $sarprop_weight_decay_shift) {} | Sets the sarprop weight decay shift
@param resource $ann
@param float $sarprop_weight_decay_shift
@return bool | fann_set_sarprop_weight_decay_shift | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_scaling_params($ann, $train_data, $new_input_min, $new_input_max, $new_output_min, $new_output_max) {} | Calculate input and output scaling parameters for future use based on training data
@param resource $ann
@param resource $train_data
@param float $new_input_min
@param float $new_input_max
@param float $new_output_min
@param float $new_output_max
@return bool | fann_set_scaling_params | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_train_error_function($ann, $error_function) {} | Sets the error function used during training
@param resource $ann
@param int $error_function
@return bool | fann_set_train_error_function | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_train_stop_function($ann, $stop_function) {} | Sets the stop function used during training
@param resource $ann
@param int $stop_function
@return bool | fann_set_train_stop_function | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_weight_array($ann, $connections) {} | Set connections in the network
@param resource $ann
@param array $connections
@return bool | fann_set_weight_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_set_weight($ann, $from_neuron, $to_neuron, $weight) {} | Set a connection in the network
@param resource $ann
@param int $from_neuron
@param int $to_neuron
@param float $weight
@return bool | fann_set_weight | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_shuffle_train_data($train_data) {} | Shuffles training data, randomizing the order
@param resource $train_data
@return bool | fann_shuffle_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_subset_train_data($data, $pos, $length) {} | Returns an copy of a subset of the train data
@param resource $data
@param int $pos
@param int $length
@return resource|false | fann_subset_train_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_test_data($ann, $data) {} | Test a set of training data and calculates the MSE for the training data
@param resource $ann
@param resource $data
@return float|false The updated MSE, or false on error. | fann_test_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_test($ann, $input, $desired_output) {} | Test with a set of inputs, and a set of desired outputs
@param resource $ann
@param array $input
@param array $desired_output
@return bool | fann_test | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_train_epoch($ann, $data) {} | Train one epoch with a set of training data
@param resource $ann
@param resource $data
@return float|false The MSE, or false on error. | fann_train_epoch | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_train_on_data($ann, $data, $max_epochs, $epochs_between_reports, $desired_error) {} | Trains on an entire dataset for a period of time
@param resource $ann
@param resource $data
@param int $max_epochs
@param int $epochs_between_reports
@param float $desired_error
@return bool | fann_train_on_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_train_on_file($ann, $filename, $max_epochs, $epochs_between_reports, $desired_error) {} | Trains on an entire dataset, which is read from file, for a period of time
@param resource $ann
@param string $filename
@param int $max_epochs
@param int $epochs_between_reports
@param float $desired_error
@return bool | fann_train_on_file | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_train($ann, $input, $desired_output) {} | Train one iteration with a set of inputs, and a set of desired outputs
@param resource $ann
@param array $input
@param array $desired_output
@return bool | fann_train | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function toCanonicalExtendedJSON($bson) {} | Converts a BSON string to its Canonical Extended JSON representation.
The canonical format prefers type fidelity at the expense of concise output and is most suited for producing
output that can be converted back to BSON without any loss of type information
(e.g. numeric types will remain differentiated).
@link https://www.php.net/manual/en/function.mongodb.bson-tocanonicalextendedjson.php
@param string $bson BSON value to be converted
@return string The converted JSON value
@throws UnexpectedValueException
@deprecated Use MongoDB\BSON\Document instead | toCanonicalExtendedJSON | php | JetBrains/phpstorm-stubs | mongodb/BSON/functions.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/mongodb/BSON/functions.php | Apache-2.0 |
function toRelaxedExtendedJSON($bson) {} | Converts a BSON string to its » Relaxed Extended JSON representation.
The relaxed format prefers use of JSON type primitives at the expense of type fidelity and is most suited for
producing output that can be easily consumed by web APIs and humans.
@link https://www.php.net/manual/en/function.mongodb.bson-torelaxedextendedjson.php
@param string $bson BSON value to be converted
@return string The converted JSON value
@throws UnexpectedValueException
@deprecated Use MongoDB\BSON\Document instead | toRelaxedExtendedJSON | php | JetBrains/phpstorm-stubs | mongodb/BSON/functions.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/mongodb/BSON/functions.php | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.