File size: 198 Bytes
e53a40c
 
 
ff1254a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from .loss import *
from .activation import *
from .nn import *

ACTIVATIONS: dict[str, Activation] = {
    "Relu": Relu(),
    "Sigmoid": Sigmoid(),
    "TanH": TanH(),
    "SoftMax": SoftMax(),
}