Files
PINA/pina/loss/__init__.py
Nicola Demo a899327de1 fix tests
2025-03-19 17:46:34 +01:00

11 lines
250 B
Python

__all__ = [
'LpLoss',
'PowerLoss',
'weightningInterface',
'LossInterface'
]
from .loss_interface import LossInterface
from .power_loss import PowerLoss
from .lp_loss import LpLoss
from .weightning_interface import weightningInterface