Php/docs/class.fannconnection

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

(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 getFromNeuron ( ) : int

public getToNeuron ( ) : int

public getWeight ( ) : void

public setWeight ( float $weight ) : void

}

プロパティ

from_neuron
The neuron where the connection starts.
to_neuron
The neuron where the connection ends.
weight
The weight of the connection.


目次