PHP 8.3.4 Released!

The FANNConnection class

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

Giriş

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().

Sınıf Sözdizimi

class FANNConnection {
/* Özellikler */
public $from_neuron;
public $to_neuron;
public $weight;
/* Yöntemler */
public __construct(int $from_neuron, int $to_neuron, float $weight)
public getFromNeuron(): int
public getToNeuron(): int
public getWeight(): void
public setWeight(float $weight): void
}

Özellikler

from_neuron

The neuron where the connection starts.

to_neuron

The neuron where the connection ends.

weight

The weight of the connection.

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top