Jensen-holm's picture
making more modular so we can develop our other methods too
c777165
raw
history blame
212 Bytes
from neural_network.activation import *
activation = {
"relu": {
"main": relu,
"prime": relu_prime,
},
"sigmoid": {
"main": sigmoid,
"prime": sigmoid_prime,
},
}