Spaces:
Sleeping
Sleeping
File size: 343 Bytes
e53a40c ff1254a d7ea050 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from .loss import *
from .activation import *
from .nn import *
ACTIVATIONS: dict[str, Activation] = {
"Relu": Relu(),
"Sigmoid": Sigmoid(),
"TanH": TanH(),
"SoftMax": SoftMax(),
}
LOSSES: dict[str, Loss] = {
"MSE": MSE(),
"CrossEntropy": CrossEntropy(),
"CrossEntropyWithLogitsLoss": CrossEntropyWithLogits(),
}
|