Evaluate third derivative of activation function of a neuron
Der3ActFunc(type ="sigmoid",...)
Arguments
type: character name of the activation function
...: extra arguments needed to calculate the functions
Returns
numeric output of the neuron
Examples
# Return derivative of the sigmoid activation function of a neuronActivationFunction <- Der3ActFunc("sigmoid")# Return derivative of the tanh activation function of a neuronActivationFunction <- Der3ActFunc("tanh")# Return derivative of the activation function of several layers of neuronsactfuncs <- c("linear","sigmoid","linear")ActivationFunctions <- sapply(actfuncs, Der3ActFunc)