o
    .wis                     @   s   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sEd
gZG dd deZdS )    )Sequence)AnyListOptionalUnion)Tensor)Literal)_cosine_similarity_compute_cosine_similarity_update)Metric)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPECosineSimilarity.plotc                       s   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dZdededdfddZdefddZ	ddeeeee f  dee defddZ  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sum	reduction)meanr   noneNkwargsreturnNc                    s\   t  jdi | d}||vrtd| d| || _| jdg dd | jdg dd d S )	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__r!   f/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchmetrics/regression/cosine_similarity.pyr#   H   s   zCosineSimilarity.__init__c                 C   s*   t ||\}}| j| | j| dS )z2Update metric states with predictions and targets.N)r
   r   appendr   r&   r   r   r!   r!   r*   updateV   s   zCosineSimilarity.updatec                 C   s"   t | j}t | j}t||| jS )zCompute metric.)r   r   r   r	   r   r,   r!   r!   r*   compute]   s   

zCosineSimilarity.computevalaxc                 C   s   |  ||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&   r/   r0   r!   r!   r*   plotc   s   (r   )r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   r   r   r   r#   r-   r.   r   r   r   r   r   r2   __classcell__r!   r!   r(   r*   r      s6   
  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!   r*   <module>   s   