Files
PINA/pina/loss/__init__.py
Giuseppe Alessio D'Inverno 716d43f146 Neural Tangent Kernel integration + typo fix (#505)
* NTK weighting + typo fixing
* black code formatter + .rst docs

---------

Co-authored-by: Dario Coscia <dariocos99@gmail.com>
2025-03-19 17:48:29 +01:00

18 lines
468 B
Python

"""Module for loss functions and weighting functions."""
__all__ = [
"LossInterface",
"LpLoss",
"PowerLoss",
"WeightingInterface",
"ScalarWeighting",
"NeuralTangentKernelWeighting",
]
from .loss_interface import LossInterface
from .power_loss import PowerLoss
from .lp_loss import LpLoss
from .weighting_interface import WeightingInterface
from .scalar_weighting import ScalarWeighting
from .ntk_weighting import NeuralTangentKernelWeighting