Populate init files

This commit is contained in:
blackfly 2020-04-11 17:35:00 +02:00
parent 8c629c0cb1
commit e54bf07030
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,12 @@
"""ProtoTorch functions."""
from .activations import identity, sigmoid_beta, swish_beta
from .competitions import knnc, wtac
__all__ = [
'identity',
'sigmoid_beta',
'swish_beta',
'knnc',
'wtac',
]

View File

@ -0,0 +1,7 @@
"""ProtoTorch modules."""
from .prototypes import Prototypes1D
__all__ = [
'Prototypes1D',
]