Numpy-Neuron / nn /activation.go
Jensen-holm's picture
re configured the Alg interface and the NN sttuct, now we have to work
a4aa491
raw
history blame
227 Bytes
package nn
var ActivationMap = map[string]func(){
"sigmoid": Sigmoid,
"tanh": Tanh,
"relu": Relu,
}
func Sigmoid() {}
func SigmoidPrime() {}
func Tanh() {}
func TanhPrime() {}
func Relu() {}
func ReluPrime() {}