C# 클래스 NeuralNetworks.Neuron

파일 보기 프로젝트 열기: hemanthk119/NeuralNetworks 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Index int

공개 메소드들

메소드 설명
Activate ( double input ) : double
AddConnection ( Neuron neuron, bool to, double weight ) : void
CalculateValue ( ) : double
Neuron ( int index, Layer initLayer, Neuron actType = ActivationType.SIGMOID, double bias ) : System

메소드 상세

Activate() 공개 메소드

public Activate ( double input ) : double
input double
리턴 double

AddConnection() 공개 메소드

public AddConnection ( Neuron neuron, bool to, double weight ) : void
neuron Neuron
to bool
weight double
리턴 void

CalculateValue() 공개 메소드

public CalculateValue ( ) : double
리턴 double

Neuron() 공개 메소드

public Neuron ( int index, Layer initLayer, Neuron actType = ActivationType.SIGMOID, double bias ) : System
index int
initLayer Layer
actType Neuron
bias double
리턴 System

프로퍼티 상세

Index 공개적으로 프로퍼티

public int Index
리턴 int