Coverage for local_installation_linux/mumott/optimization/loss_functions/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2024-08-11 23:08 +0000

1# -*- coding: utf-8 -*- 

2 

3from .squared_loss import SquaredLoss 

4from .huber_loss import HuberLoss 

5 

6__all__ = ['SquaredLoss', 'HuberLoss']