C# Класс SuperNeuro.Layers.Activations.Exp

Exponential activation function which returns simple exp(x)
Наследование: BaseLayer
Показать файл Открыть проект

Открытые методы

Метод Описание
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