Der2ActFunc {NeuralSens}R Documentation

Second derivative of activation function of neuron

Description

Evaluate second derivative of activation function of a neuron

Usage

Der2ActFunc(type = "sigmoid", ...)

Arguments

type

character name of the activation function

...

extra arguments needed to calculate the functions

Value

numeric output of the neuron

Examples

# Return derivative of the sigmoid activation function of a neuron
ActivationFunction <- Der2ActFunc("sigmoid")
# Return derivative of the tanh activation function of a neuron
ActivationFunction <- Der2ActFunc("tanh")
# Return derivative of the activation function of several layers of neurons
actfuncs <- c("linear","sigmoid","linear")
ActivationFunctions <- sapply(actfuncs, Der2ActFunc)

[Package NeuralSens version 1.1.3 Index]