CakeFest 2024: The Official CakePHP Conference

FANNConnection 类

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

简介

FANNConnection 被用于神经网络的连接。 该类的对象一般在 fann_get_connection_array()fann_set_weight_array() 中被使用。

类摘要

class 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

开始连接的神经元。

to_neuron

结束连接的神经元。

weight

连接的权重。

目录

add a note

User Contributed Notes

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