
    is                         d dl mZ d dlmZmZ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 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ListOptionalUnion)Tensor)Literal)_cosine_similarity_compute_cosine_similarity_update)Metric)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEzCosineSimilarity.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
<   ee   ed<   ee   ed<   	 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e   f      dee   defdZ xZS )CosineSimilaritya  Compute the `Cosine Similarity`_.

    .. math::
        cos_{sim}(x,y) = \frac{x \cdot y}{||x|| \cdot ||y||} =
        \frac{\sum_{i=1}^n x_i y_i}{\sqrt{\sum_{i=1}^n x_i^2}\sqrt{\sum_{i=1}^n y_i^2}}

    where :math:`y` is a tensor of target values, and :math:`x` is a tensor of predictions.

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

    - ``preds`` (:class:`~torch.Tensor`): Predicted float tensor with shape ``(N,d)``
    - ``target`` (:class:`~torch.Tensor`): Ground truth float tensor with shape ``(N,d)``

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

    - ``cosine_similarity`` (:class:`~torch.Tensor`): A float tensor with the cosine similarity

    Args:
        reduction: how to reduce over the batch dimension using 'sum', 'mean' or 'none' (taking the individual scores)
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Example:
        >>> from torch import tensor
        >>> from torchmetrics.regression import CosineSimilarity
        >>> target = tensor([[0, 1], [1, 1]])
        >>> preds = tensor([[0, 1], [0, 1]])
        >>> cosine_similarity = CosineSimilarity(reduction = 'mean')
        >>> cosine_similarity(preds, target)
        tensor(0.8536)

    Tis_differentiablehigher_is_betterFfull_state_updateg        plot_lower_boundg      ?plot_upper_boundpredstarget	reduction)meansumnoneNkwargsreturnNc                     t        |   di | d}||vrt        d| d|       || _        | j	                  dg d       | j	                  dg d       y )	N)r   r   r   Nz+Expected argument `reduction` to be one of z	 but got r   cat)dist_reduce_fxr    )super__init__
ValueErrorr   	add_state)selfr   r   allowed_reduction	__class__s       ~/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/regression/cosine_similarity.pyr%   zCosineSimilarity.__init__H   sm    
 	"6"9--JK\J]]fgpfqrss"w59xE:    c                     t        ||      \  }}| j                  j                  |       | j                  j                  |       y)z2Update metric states with predictions and targets.N)r   r   appendr   r(   r   r   s      r+   updatezCosineSimilarity.updateV   s6    1%@v

% 6"r,   c                     t        | j                        }t        | j                        }t        ||| j                        S )zCompute metric.)r   r   r   r
   r   r/   s      r+   computezCosineSimilarity.compute]   s1    TZZ(dkk*)%HHr,   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

            >>> from torch import randn
            >>> # Example plotting a single value
            >>> from torchmetrics.regression import CosineSimilarity
            >>> metric = CosineSimilarity()
            >>> metric.update(randn(10,2), randn(10,2))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> from torch import randn
            >>> # Example plotting multiple values
            >>> from torchmetrics.regression import CosineSimilarity
            >>> metric = CosineSimilarity()
            >>> values = []
            >>> for _ in range(10):
            ...     values.append(metric(randn(10,2), randn(10,2)))
            >>> fig, ax = metric.plot(values)

        )_plot)r(   r3   r4   s      r+   plotzCosineSimilarity.plotc   s    P zz#r""r,   )r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   r   r	   r   r%   r0   r2   r   r   r   r   r   r7   __classcell__)r*   s   @r+   r   r      s    @ #t"!d!#t#!e!!e!<L ;@;67; ; 
	;#F #F #t #I I _c(#E&(6*:":;<(#IQRZI[(#	(#r,   r   N)collections.abcr   typingr   r   r   r   torchr   typing_extensionsr	   4torchmetrics.functional.regression.cosine_similarityr
   r   torchmetrics.metricr   torchmetrics.utilities.datar   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r#   r,   r+   <module>rJ      s?    % - -  % v & 4 @ @/0m#v m#r,   