Ë
    ýÿæiú  ã                   ó´   — d dl mZ d dlmZmZmZmZ d dlZd dlmZm	Z	 d dl
mZ d dlmZ d dlmZmZ d dlmZ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ÚCallableÚOptionalÚUnionN)ÚTensorÚtensor)ÚLiteral)Úretrieval_fall_out)ÚRetrievalMetricÚ_retrieval_aggregate)Ú_flexible_bincountÚdim_zero_cat)Ú_MATPLOTLIB_AVAILABLE)Ú_AX_TYPEÚ_PLOT_OUT_TYPEzRetrievalFallOut.plotc                   óþ   ‡ — e Zd ZU dZ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e   dee   deed   ef   dedd
fˆ fd„Zdefd„Zdededefd„Z	 ddeeeee   f      dee   defd„Zˆ xZS )ÚRetrievalFallOuta×
  Compute `Fall-out`_.

    Works with binary target data. Accepts float predictions from a model output.

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

    - ``preds`` (:class:`~torch.Tensor`): A float tensor of shape ``(N, ...)``
    - ``target`` (:class:`~torch.Tensor`): A long or bool tensor of shape ``(N, ...)``
    - ``indexes`` (:class:`~torch.Tensor`): A long tensor of shape ``(N, ...)`` which indicate to which query a
      prediction belongs

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

    - ``fallout@k`` (:class:`~torch.Tensor`): A tensor with the computed metric

    All ``indexes``, ``preds`` and ``target`` must have the same dimension and will be flatten at the beginning,
    so that for example, a tensor of shape ``(N, M)`` is treated as ``(N * M, )``. Predictions will be first grouped by
    ``indexes`` and then will be computed as the mean of the metric over each query.

    Args:
        empty_target_action:
            Specify what to do with queries that do not have at least a negative ``target``. Choose from:

            - ``'neg'``: those queries count as ``0.0`` (default)
            - ``'pos'``: those queries count as ``1.0``
            - ``'skip'``: skip those queries; if all queries are skipped, ``0.0`` is returned
            - ``'error'``: raise a ``ValueError``

        ignore_index: Ignore predictions where the target is equal to this number.
        top_k: Consider only the top k elements for each query (default: `None`, which considers them all)
        aggregation:
            Specify how to aggregate over indexes. Can either a custom callable function that takes in a single tensor
            and returns a scalar value or one of the following strings:

            - ``'mean'``: average value is returned
            - ``'median'``: median value is returned
            - ``'max'``: max value is returned
            - ``'min'``: min value is returned

        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Raises:
        ValueError:
            If ``empty_target_action`` is not one of ``error``, ``skip``, ``neg`` or ``pos``.
        ValueError:
            If ``ignore_index`` is not `None` or an integer.
        ValueError:
            If ``top_k`` is not ``None`` or not an integer greater than 0.

    Example:
        >>> from torchmetrics.retrieval import RetrievalFallOut
        >>> indexes = tensor([0, 0, 0, 1, 1, 1, 1])
        >>> preds = tensor([0.2, 0.3, 0.5, 0.1, 0.3, 0.5, 0.2])
        >>> target = tensor([False, False, True, False, True, False, True])
        >>> rfo = RetrievalFallOut(top_k=2)
        >>> rfo(preds, target, indexes=indexes)
        tensor(0.5000)

    FÚis_differentiableÚhigher_is_betterÚfull_state_updateç        Úplot_lower_boundç      ð?Úplot_upper_boundNÚempty_target_actionÚignore_indexÚtop_kÚaggregation)ÚmeanÚmedianÚminÚmaxÚkwargsÚreturnc                 ó~   •— t        ‰| �  d|||dœ|¤Ž |� t        |t        «      r|dkD  st	        d«      ‚|| _        y )N)r   r   r   r   z,`top_k` has to be a positive integer or None© )ÚsuperÚ__init__Ú
isinstanceÚintÚ
ValueErrorr   )Úselfr   r   r   r   r$   Ú	__class__s         €út/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/retrieval/fall_out.pyr)   zRetrievalFallOut.__init__b   sT   ø€ ô 	‰Ñð 	
Ø 3Ø%Ø#ñ	
ð ò		
ð Ð¤j°¼Ô&<ÀÈÂÜÐKÓLÐLØˆ�
ó    c           
      óÈ  — t        | j                  «      }t        | j                  «      }t        | j                  «      }t	        j
                  |«      \  }}||   }||   }t        |«      j                  «       j                  «       j                  «       }g }t        t	        j                  ||d¬«      t	        j                  ||d¬«      «      D ]¨  \  }}d|z
  j                  «       so| j                  dk(  rt        d«      ‚| j                  dk(  r|j                  t!        d«      «       Œ]| j                  dk(  sŒm|j                  t!        d	«      «       Œˆ|j                  | j#                  ||«      «       Œª |rGt%        t	        j&                  |D �	cg c]  }	|	j)                  |«      ‘Œ c}	«      | j*                  ¬
«      S t!        d	«      j)                  |«      S c c}	w )a€  First concat state ``indexes``, ``preds`` and ``target`` since they were stored as lists.

        After that, compute list of groups that will help in keeping together predictions about the same query. Finally,
        for each group compute the `_metric` if the number of negative targets is at least 1, otherwise behave as
        specified by `self.empty_target_action`.

        r   )Údimé   ÚerrorzC`compute` method was provided with a query with no negative target.Úposr   Únegr   )r   )r   ÚindexesÚpredsÚtargetÚtorchÚsortr   ÚdetachÚcpuÚtolistÚzipÚsplitÚsumr   r,   Úappendr	   Ú_metricr   ÚstackÚtor   )
r-   r7   r8   r9   ÚindicesÚsplit_sizesÚresÚ
mini_predsÚmini_targetÚxs
             r/   ÚcomputezRetrievalFallOut.computeu   s‰  € ô ˜tŸ|™|Ó,ˆÜ˜TŸZ™ZÓ(ˆÜ˜dŸk™kÓ*ˆä Ÿ:™: gÓ.Ñˆ�Ø�g‘ˆØ˜‘ˆä(¨Ó1×8Ñ8Ó:×>Ñ>Ó@×GÑGÓIˆàˆÜ'*Ü�K‰K˜˜{°Ô2´E·K±KÀÈÐYZÔ4[ö(
Ñ#ˆJ˜ð ˜‘O×(Ñ(Ô*Ø×+Ñ+¨wÒ6Ü$Ð%jÓkÐkØ×+Ñ+¨uÒ4Ø—J‘Jœv c›{Õ+Ø×-Ñ-°Ó6Ø—J‘Jœv c›{Õ+ð —
‘
˜4Ÿ<™<¨
°KÓ@ÕAð(
ñ  ô !¤§¡Á3Ó-GÁ3¸a¨a¯d©d°5­kÀ3Ñ-GÓ!HÐVZ×VfÑVfÔgð	
ô ˜“—‘ Ó&ð	
ùÚ-Gs   ÆGr8   r9   c                 ó2   — t        ||| j                  ¬«      S )N)r   )r   r   )r-   r8   r9   s      r/   rC   zRetrievalFallOut._metricœ   s   € Ü! %¨°t·z±zÔBÐBr0   Ú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

            >>> import torch
            >>> from torchmetrics.retrieval import RetrievalFallOut
            >>> # Example plotting a single value
            >>> metric = RetrievalFallOut()
            >>> metric.update(torch.rand(10,), torch.randint(2, (10,)), indexes=torch.randint(2,(10,)))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> import torch
            >>> from torchmetrics.retrieval import RetrievalFallOut
            >>> # Example plotting multiple values
            >>> metric = RetrievalFallOut()
            >>> values = []
            >>> for _ in range(10):
            ...     values.append(metric(torch.rand(10,), torch.randint(2, (10,)), indexes=torch.randint(2,(10,))))
            >>> fig, ax = metric.plot(values)

        )Ú_plot)r-   rN   rO   s      r/   ÚplotzRetrievalFallOut.plotŸ   s   € ðP �z‰z˜#˜rÓ"Ð"r0   )r5   NNr    )NN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   ÚboolÚ__annotations__r   r   r   Úfloatr   Ústrr   r+   r   r
   r   r   r)   r   rL   rC   r   r   r   rR   Ú__classcell__)r.   s   @r/   r   r      s  ø… ñ:ðx $Ð�tÓ#Ø"Ð�dÓ"Ø#Ð�tÓ#Ø!Ð�eÓ!Ø!Ð�eÓ!ð $)Ø&*Ø#ØPVñà ðð ˜s‘mðð ˜‰}ð	ð
 ˜7Ð#AÑBÀHÐLÑMðð ðð 
õð&%
˜ó %
ðNC˜Vð C¨Vð C¸ó Cð _cñ(#Ø˜E &¨(°6Ñ*:Ð":Ñ;Ñ<ð(#ØIQÐRZÑI[ð(#à	÷(#r0   r   )Úcollections.abcr   Útypingr   r   r   r   r:   r   r	   Útyping_extensionsr
   Ú*torchmetrics.functional.retrieval.fall_outr   Útorchmetrics.retrieval.baser   r   Útorchmetrics.utilities.datar   r   Útorchmetrics.utilities.importsr   Útorchmetrics.utilities.plotr   r   Ú__doctest_skip__r   r'   r0   r/   Ú<module>re      sB   ðõ %ß 1Ó 1ã ß  Ý %å Iß Mß HÝ @ß @áØ/Ð0Ðôh#�õ h#r0   