
    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	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)_log_cosh_error_compute_log_cosh_error_update)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEzLogCoshError.plotc                        e Zd ZU dZdZdZdZdZee	d<   e
e	d<   e
e	d<   dde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 )LogCoshErroraO  Compute the `LogCosh Error`_.

    .. math:: \text{LogCoshError} = \log\left(\frac{\exp(\hat{y} - y) + \exp(\hat{y - y})}{2}\right)

    Where :math:`y` is a tensor of target values, and :math:`\hat{y}` is a tensor of predictions.

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

    - ``preds`` (:class:`~torch.Tensor`): Estimated labels with shape ``(batch_size,)``
      or ``(batch_size, num_outputs)``
    - ``target`` (:class:`~torch.Tensor`): Ground truth labels with shape ``(batch_size,)``
      or ``(batch_size, num_outputs)``

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

    - ``log_cosh_error`` (:class:`~torch.Tensor`): A tensor with the log cosh error

    Args:
        num_outputs: Number of outputs in multioutput setting
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Example (single output regression)::
        >>> from torchmetrics.regression import LogCoshError
        >>> preds = torch.tensor([3.0, 5.0, 2.5, 7.0])
        >>> target = torch.tensor([2.5, 5.0, 4.0, 8.0])
        >>> log_cosh_error = LogCoshError()
        >>> log_cosh_error(preds, target)
        tensor(0.3523)

    Example (multi output regression)::
        >>> from torchmetrics.regression import LogCoshError
        >>> preds = torch.tensor([[3.0, 5.0, 1.2], [-2.1, 2.5, 7.0]])
        >>> target = torch.tensor([[2.5, 5.0, 1.3], [0.3, 4.0, 8.0]])
        >>> log_cosh_error = LogCoshError(num_outputs=3)
        >>> log_cosh_error(preds, target)
        tensor([0.9176, 0.4277, 0.2194])

    TFg        plot_lower_boundsum_log_cosh_errortotalnum_outputskwargsreturnNc                    t        |   di | t        |t              s|dk  rt	        d|       || _        | j                  dt        j                  |      d       | j                  dt        j                  d      d       y )	N   zDExpected argument `num_outputs` to be an int larger than 0, but got r   sum)defaultdist_reduce_fxr   r    )
super__init__
isinstanceint
ValueErrorr   	add_statetorchzerostensor)selfr   r   	__class__s      u/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/regression/log_cosh.pyr   zLogCoshError.__init__M   sw    "6"+s+acdocpqrr&+U[[5M^cdwQN    predstargetc                     t        ||| j                        \  }}| xj                  |z  c_        | xj                  |z  c_        y)zUpdate state with predictions and targets.

        Raises:
            ValueError:
                If ``preds`` or ``target`` has multiple outputs when ``num_outputs=1``

        N)r	   r   r   r   )r%   r)   r*   r   num_obss        r'   updatezLogCoshError.updateV   s>     '=UFDL\L\&]#G#55

g
r(   c                 B    t        | j                  | j                        S )z!Compute LogCosh error over state.)r   r   r   )r%   s    r'   computezLogCoshError.computeb   s    &t'>'>

KKr(   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 LogCoshError
            >>> metric = LogCoshError()
            >>> metric.update(randn(10,), randn(10,))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

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

        )_plot)r%   r0   r1   s      r'   plotzLogCoshError.plotf   s    P zz#r""r(   )r   )NN)__name__
__module____qualname____doc__is_differentiablehigher_is_betterfull_state_updater   float__annotations__r   r   r   r   r-   r/   r   r   r   r   r   r4   __classcell__)r&   s   @r'   r   r      s    %N !e!MOC Os Ot O
F 
F 
t 
L L
 _c(#E&(6*:":;<(#IQRZI[(#	(#r(   r   )collections.abcr   typingr   r   r   r"   r   +torchmetrics.functional.regression.log_coshr   r	   torchmetrics.metricr
   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r   r(   r'   <module>rF      s<    % ' '   g & @ @+,q#6 q#r(   