* Enable DDP training with batch_size=None and add validity check for split sizes * Refactoring SolverInterfaces (#435) * Solver update + weighting * Updating PINN for 0.2 * Modify GAROM + tests * Adding more versatile loggers * Disable compilation when running on Windows * Fix tests --------- Co-authored-by: giovanni <giovanni.canali98@yahoo.it> Co-authored-by: FilippoOlivo <filippo@filippoolivo.com>
14 lines
317 B
Python
14 lines
317 B
Python
__all__ = [
|
|
'LossInterface',
|
|
'LpLoss',
|
|
'PowerLoss',
|
|
'WeightingInterface',
|
|
'ScalarWeighting'
|
|
]
|
|
|
|
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
|