
    i                          d dl mZ d dlmZmZmZ d dlZd dlmZ d dlm	Z	 d dl
mZmZmZ d dlmZ d dlmZ d d	lmZmZ esd
gZ G d de      Zy)    )Sequence)AnyOptionalUnionN)Tensor)Literal)_generalized_dice_compute_generalized_dice_update_generalized_dice_validate_args)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEzGeneralizedDiceScore.plotc                        e Zd ZU dZeed<   eed<   dZeed<   dZeed<   dZ	eed<   d	Z
eed
<   dZeed<   	 	 	 	 ddedededed   ded   deddf fdZdededdfdZdefdZd deeee   df   dee   defdZ xZS )!GeneralizedDiceScorea  Compute `Generalized Dice Score`_.

    The metric can be used to evaluate the performance of image segmentation models. The Generalized Dice Score is
    defined as:

    .. math::
        GDS = \frac{2 \\sum_{i=1}^{N} w_i \\sum_{j} t_{ij} p_{ij}}{
            \\sum_{i=1}^{N} w_i \\sum_{j} t_{ij} + \\sum_{i=1}^{N} w_i \\sum_{j} p_{ij}}

    where :math:`N` is the number of classes, :math:`t_{ij}` is the target tensor, :math:`p_{ij}` is the prediction
    tensor, and :math:`w_i` is the weight for class :math:`i`. The weight can be computed in three different ways:

    - `square`: :math:`w_i = 1 / (\\sum_{j} t_{ij})^2`
    - `simple`: :math:`w_i = 1 / \\sum_{j} t_{ij}`
    - `linear`: :math:`w_i = 1`

    Note that the generalized dice loss can be computed as one minus the generalized dice score.

    As input to ``forward`` and ``update`` the metric accepts the following input:

        - ``preds`` (:class:`~torch.Tensor`): An one-hot boolean tensor of shape ``(N, C, ...)`` with ``N`` being
          the number of samples and ``C`` the number of classes. Alternatively, an integer tensor of shape ``(N, ...)``
          can be provided, where the integer values correspond to the class index. The input type can be controlled
          with the ``input_format`` argument.
        - ``target`` (:class:`~torch.Tensor`): An one-hot boolean tensor of shape ``(N, C, ...)`` with ``N`` being
          the number of samples and ``C`` the number of classes. Alternatively, an integer tensor of shape ``(N, ...)``
          can be provided, where the integer values correspond to the class index. The input type can be controlled
          with the ``input_format`` argument.

    As output to ``forward`` and ``compute`` the metric returns the following output:

        - ``gds`` (:class:`~torch.Tensor`): The generalized dice score. If ``per_class`` is set to ``True``, the output
          will be a tensor of shape ``(C,)`` with the generalized dice score for each class. If ``per_class`` is
          set to ``False``, the output will be a scalar tensor.

    Args:
        num_classes: The number of classes in the segmentation problem.
        include_background: Whether to include the background class in the computation
        per_class: Whether to compute the metric for each class separately.
        weight_type: The type of weight to apply to each class. Can be one of ``"square"``, ``"simple"``, or
            ``"linear"``.
        input_format: What kind of input the function receives.
            Choose between ``"one-hot"`` for one-hot encoded tensors, ``"index"`` for index tensors
            or ``"mixed"`` for one one-hot encoded and one index tensor
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Raises:
        ValueError:
            If ``num_classes`` is not a positive integer
        ValueError:
            If ``include_background`` is not a boolean
        ValueError:
            If ``per_class`` is not a boolean
        ValueError:
            If ``weight_type`` is not one of ``"square"``, ``"simple"``, or ``"linear"``
        ValueError:
            If ``input_format`` is not one of ``"one-hot"``, ``"index"`` or ``"mixed"``

    Example:
        >>> from torch import randint
        >>> from torchmetrics.segmentation import GeneralizedDiceScore
        >>> gds = GeneralizedDiceScore(num_classes=3)
        >>> preds = randint(0, 2, (10, 3, 128, 128))
        >>> target = randint(0, 2, (10, 3, 128, 128))
        >>> gds(preds, target)
        tensor(0.4992)
        >>> gds = GeneralizedDiceScore(num_classes=3, per_class=True)
        >>> gds(preds, target)
        tensor([0.5001, 0.4993, 0.4982])
        >>> gds = GeneralizedDiceScore(num_classes=3, per_class=True, include_background=False)
        >>> gds(preds, target)
        tensor([0.4993, 0.4982])

    scoresamplesFfull_state_updateis_differentiableThigher_is_betterg        plot_lower_boundg      ?plot_upper_boundnum_classesinclude_background	per_classweight_type)squaresimplelinearinput_format)one-hotindexmixedkwargsreturnNc                 >   t        |   di | t        |||||       || _        || _        || _        || _        || _        |s|dz
  n|}| j                  dt        j                  |r|nd      d       | j                  dt        j                  d      d       y )N   r   sum)defaultdist_reduce_fxr    )super__init__r   r   r   r   r   r    	add_statetorchzeros)selfr   r   r   r   r    r$   	__class__s          /Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/segmentation/generalized_dice.pyr-   zGeneralizedDiceScore.__init__v   s     	"6"'5GT_amn&"4"&(-?kAo[w9KRS(Tejky%++a.O    predstargetc                 2   t        ||| j                  | j                  | j                  | j                        \  }}| xj
                  t        ||| j                        j                  d      z  c_        | xj                  |j                  d   z  c_	        y)zUpdate the state with new data.r   )dimN)r
   r   r   r   r    r   r	   r   r(   r   shape)r1   r5   r6   	numeratordenominators        r3   updatezGeneralizedDiceScore.update   sz    !964++T-D-DdFVFVX\XiXi"
	; 	

/	;W[[`a[bb
A&r4   c                 4    | j                   | j                  z  S )z)Compute the final generalized dice score.)r   r   )r1   s    r3   computezGeneralizedDiceScore.compute   s    zzDLL((r4   valaxc                 &    | j                  ||      S )a  Plot a single or multiple values from the metric.

        Args:
            val: Either a single result from calling `metric.forward` or `metric.compute` or a list of these results.
                If no value is provided, will automatically call `metric.compute` and plot that result.
            ax: An matplotlib axis object. If provided will add plot to that axis

        Returns:
            Figure and Axes object

        Raises:
            ModuleNotFoundError:
                If `matplotlib` is not installed

        .. plot::
            :scale: 75

            >>> # Example plotting a single value
            >>> import torch
            >>> from torchmetrics.segmentation import GeneralizedDiceScore
            >>> metric = GeneralizedDiceScore(num_classes=3)
            >>> metric.update(torch.randint(0, 2, (10, 3, 128, 128)), torch.randint(0, 2, (10, 3, 128, 128)))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> # Example plotting multiple values
            >>> import torch
            >>> from torchmetrics.segmentation import GeneralizedDiceScore
            >>> metric = GeneralizedDiceScore(num_classes=3)
            >>> values = [ ]
            >>> for _ in range(10):
            ...     values.append(
            ...        metric(torch.randint(0, 2, (10, 3, 128, 128)), torch.randint(0, 2, (10, 3, 128, 128)))
            ...     )
            >>> fig_, ax_ = metric.plot(values)

        )_plot)r1   r?   r@   s      r3   plotzGeneralizedDiceScore.plot   s    P zz#r""r4   )TFr   r!   )NN)__name__
__module____qualname____doc__r   __annotations__r   boolr   r   r   floatr   intr   r   r-   r<   r>   r   r   r   r   r   rC   __classcell__)r2   s   @r3   r   r   "   s   IV MO#t##t#!d!!e!!e!
 $(=E=FPP !P 	P
 9:P 9:P P 
P*'F 'F 't ') )(#fhv&6<= (#(S[J\ (#hv (#r4   r   )collections.abcr   typingr   r   r   r/   r   typing_extensionsr   5torchmetrics.functional.segmentation.generalized_dicer	   r
   r   torchmetrics.metricr   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r+   r4   r3   <module>rU      sH    % ' '   % 
 ' @ @34]#6 ]#r4   