FANN
PHP Manual

The FANNConnection class

(No version information available, might only be in Git)

简介

FANNConnection is used for the neural network connection. The objects of this class are used in fann_get_connection_array() and fann_set_weight_array().

类摘要

FANNConnection {
/* 属性 */
public $from_neuron ;
public $to_neuron ;
public $weight ;
/* 方法 */
public __construct ( int $from_neuron , int $to_neuron , float $weight )
public int getFromNeuron ( void )
public int getToNeuron ( void )
public void getWeight ( void )
public bool setWeight ( float $weight )
}

属性

from_neuron

The neuron where the connection starts.

to_neuron

The neuron where the connection ends.

weight

The weight of the connection.

Table of Contents


FANN
PHP Manual