Jensen-holm's picture
we should try to do this with regression on a simple dataset from the internet somewhere because I think it is hard to see how well it is doing with completley random data
4175aca
raw
history blame
285 Bytes
from neural_network.activation import *
activation = {
"relu": {
"main": relu,
"prime": relu_prime,
},
"sigmoid": {
"main": sigmoid,
"prime": sigmoid_prime,
},
"tanh": {
"main": tanh,
"prime": tanh_prime,
},
}