Numpy-Neuron / numpyneuron /__init__.py
Jensen Holm
adding unit tests for activation functions (using pytest)
ff1254a
raw
history blame
198 Bytes
from .loss import *
from .activation import *
from .nn import *
ACTIVATIONS: dict[str, Activation] = {
"Relu": Relu(),
"Sigmoid": Sigmoid(),
"TanH": TanH(),
"SoftMax": SoftMax(),
}