update : 2015.11.03
php.shukuma.com

검색:
 
 
The FANNConnection class

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