Der3ActFunc: Third derivative of activation function of neuron

View source: R/ActFunc.R

Der3ActFuncR Documentation

Third derivative of activation function of neuron

Description

Evaluate third derivative of activation function of a neuron

Usage

Der3ActFunc(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 <- Der3ActFunc("sigmoid")
# Return derivative of the tanh activation function of a neuron
ActivationFunction <- Der3ActFunc("tanh")
# Return derivative of the activation function of several layers of neurons
actfuncs <- c("linear","sigmoid","linear")
ActivationFunctions <- sapply(actfuncs, Der3ActFunc)

NeuralSens documentation built on July 9, 2023, 6:18 p.m.