Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/source/losses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ Segmentation Losses
.. autoclass:: dice
:members:

`HardL1ACELoss`
~~~~~~~~~~~~~~~~
.. autoclass:: HardL1ACELoss
:members:

`SoftL1ACELoss`
~~~~~~~~~~~~~~~~
.. autoclass:: SoftL1ACELoss
:members:

`MaskedDiceLoss`
~~~~~~~~~~~~~~~~
.. autoclass:: MaskedDiceLoss
Expand Down
4 changes: 2 additions & 2 deletions monai/handlers/calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class CalibrationError(IgniteMetricHandler):
- Guo, C., et al. "On Calibration of Modern Neural Networks." ICML 2017.
https://proceedings.mlr.press/v70/guo17a.html
- Barfoot, T., et al. "Average Calibration Losses for Reliable Uncertainty in
Medical Image Segmentation." arXiv:2506.03942v3, 2025.
https://arxiv.org/abs/2506.03942v3
Medical Image Segmentation." IEEE Transactions on Medical Imaging, 2026.
https://doi.org/10.1109/TMI.2026.3673118

See Also:
- :py:class:`~monai.metrics.CalibrationErrorMetric`: The underlying metric class.
Expand Down
1 change: 1 addition & 0 deletions monai/losses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from .aucm_loss import AUCMLoss
from .barlow_twins import BarlowTwinsLoss
from .boundary_loss import BoundaryLoss
from .calibration import HardL1ACELoss, SoftL1ACELoss
from .cldice import SoftclDiceLoss, SoftDiceclDiceLoss
from .contrastive import ContrastiveLoss
from .deform import BendingEnergyLoss, DiffusionLoss
Expand Down
Loading
Loading