FANN (Fast Artificial Neural Network)

目次

The FANNConnection class

はじめに

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
class FANNConnection {
/* プロパティ */
public $from_neuron;
public $to_neuron;
public $weight;
/* メソッド */
public __construct(int $from_neuron, int $to_neuron, float $weight)
public int getFromNeuron()
public int getToNeuron()
public void getWeight()
public void 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.