C# 클래스 SuperNeuro.Layers.Activations.Exp

Exponential activation function which returns simple exp(x)
상속: BaseLayer
파일 보기 프로젝트 열기: tech-quantum/SuperchargedArray

공개 메소드들

메소드 설명
Backward ( SuperArray outputgrad ) : void

Calculate the gradient of this layer function

Exp ( ) : SuperchargedArray

Initializes a new instance of the Exp class.

Forward ( SuperArray x ) : void

Forwards the inputs and compute the output

메소드 상세

Backward() 공개 메소드

Calculate the gradient of this layer function
public Backward ( SuperArray outputgrad ) : void
outputgrad SuperArray The calculated output grad from previous layer.
리턴 void

Exp() 공개 메소드

Initializes a new instance of the Exp class.
public Exp ( ) : SuperchargedArray
리턴 SuperchargedArray

Forward() 공개 메소드

Forwards the inputs and compute the output
public Forward ( SuperArray x ) : void
x SuperArray The input SuperArray for this layer.
리턴 void