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

3 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2025-12-26 11:25 +0000

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

2 

3from .squared_loss import SquaredLoss 

4from .huber_loss import HuberLoss 

5 

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