|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations |
|
|
|
|
|
from typing import Union |
|
|
|
|
|
import torch |
|
|
import torch.nn.functional as F |
|
|
from torch.nn.modules.loss import _Loss |
|
|
|
|
|
from monai.utils import pytorch_after |
|
|
|
|
|
|
|
|
class DeepSupervisionLoss(_Loss): |
|
|
""" |
|
|
Wrapper class around the main loss function to accept a list of tensors returned from a deeply |
|
|
supervised networks. The final loss is computed as the sum of weighted losses for each of deep supervision levels. |
|
|
""" |
|
|
|
|
|
def __init__(self, loss: _Loss, weight_mode: str = "exp", weights: list[float] | None = None) -> None: |
|
|
""" |
|
|
Args: |
|
|
loss: main loss instance, e.g DiceLoss(). |
|
|
weight_mode: {``"same"``, ``"exp"``, ``"two"``} |
|
|
Specifies the weights calculation for each image level. Defaults to ``"exp"``. |
|
|
- ``"same"``: all weights are equal to 1. |
|
|
- ``"exp"``: exponentially decreasing weights by a power of 2: 0, 0.5, 0.25, 0.125, etc . |
|
|
- ``"two"``: equal smaller weights for lower levels: 1, 0.5, 0.5, 0.5, 0.5, etc |
|
|
weights: a list of weights to apply to each deeply supervised sub-loss, if provided, this will be used |
|
|
regardless of the weight_mode |
|
|
""" |
|
|
super().__init__() |
|
|
self.loss = loss |
|
|
self.weight_mode = weight_mode |
|
|
self.weights = weights |
|
|
self.interp_mode = "nearest-exact" if pytorch_after(1, 11) else "nearest" |
|
|
|
|
|
def get_weights(self, levels: int = 1) -> list[float]: |
|
|
""" |
|
|
Calculates weights for a given number of scale levels |
|
|
""" |
|
|
levels = max(1, levels) |
|
|
if self.weights is not None and len(self.weights) >= levels: |
|
|
weights = self.weights[:levels] |
|
|
elif self.weight_mode == "same": |
|
|
weights = [1.0] * levels |
|
|
elif self.weight_mode == "exp": |
|
|
weights = [max(0.5**l, 0.0625) for l in range(levels)] |
|
|
elif self.weight_mode == "two": |
|
|
weights = [1.0 if l == 0 else 0.5 for l in range(levels)] |
|
|
else: |
|
|
weights = [1.0] * levels |
|
|
|
|
|
return weights |
|
|
|
|
|
def get_loss(self, input: torch.Tensor, target: torch.Tensor) -> torch.Tensor: |
|
|
""" |
|
|
Calculates a loss output accounting for differences in shapes, |
|
|
and downsizing targets if necessary (using nearest neighbor interpolation) |
|
|
Generally downsizing occurs for all level, except for the first (level==0) |
|
|
""" |
|
|
if input.shape[2:] != target.shape[2:]: |
|
|
target = F.interpolate(target, size=input.shape[2:], mode=self.interp_mode) |
|
|
return self.loss(input, target) |
|
|
|
|
|
def forward(self, input: Union[None, torch.Tensor, list[torch.Tensor]], target: torch.Tensor) -> torch.Tensor: |
|
|
if isinstance(input, (list, tuple)): |
|
|
weights = self.get_weights(levels=len(input)) |
|
|
loss = torch.tensor(0, dtype=torch.float, device=target.device) |
|
|
for l in range(len(input)): |
|
|
loss += weights[l] * self.get_loss(input[l].float(), target) |
|
|
return loss |
|
|
if input is None: |
|
|
raise ValueError("input shouldn't be None.") |
|
|
|
|
|
return self.loss(input.float(), target) |
|
|
|
|
|
|
|
|
ds_loss = DeepSupervisionLoss |
|
|
|