La classe FANNConnection

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

Introduction

FANNConnection est utilisée pour la connexion du réseau de neurones. Les objets de cette classe sont utilisés dans fann_get_connection_array() et fann_set_weight_array().

Synopsis de la classe

class FANNConnection {
/* Propriétés */
public $from_neuron;
public $to_neuron;
public $weight;
/* Méthodes */
public function __construct(int $from_neuron, int $to_neuron, float $weight)
public function getFromNeuron(): int
public function getToNeuron(): int
public function getWeight(): void
public function setWeight(float $weight): void
}

Propriétés

from_neuron

Le neurone où la connexion commence.

to_neuron

Le neurone où la connexion se termine.

weight

Le poids de la connexion.

Sommaire

add a note

User Contributed Notes

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