Spaces:
Sleeping
Sleeping
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
from neural_network.activation import * | |
activation = { | |
"relu": { | |
"main": relu, | |
"prime": relu_prime, | |
}, | |
"sigmoid": { | |
"main": sigmoid, | |
"prime": sigmoid_prime, | |
}, | |
"tanh": { | |
"main": tanh, | |
"prime": tanh_prime, | |
}, | |
} | |