a
    d                     @   s   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	m
Z
 d dlmZ d dlmZ d dlmZmZ esrdgZG d	d
 d
eZdS )    )AnyOptionalSequenceUnionN)Tensortensor)_mean_squared_error_compute_mean_squared_error_update)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEMeanSquaredError.plotc                       s   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eeed	d
 fddZe
e
d	dddZe
dddZdeee
ee
 f  ee edddZ  ZS )MeanSquaredErrora`  Compute `mean squared error`_ (MSE).

    .. math:: \text{MSE} = \frac{1}{N}\sum_i^N(y_i - \hat{y_i})^2

    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`): Predictions from model
    - ``target`` (:class:`~torch.Tensor`): Ground truth values

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

    - ``mean_squared_error`` (:class:`~torch.Tensor`): A tensor with the mean squared error

    Args:
        squared: If True returns MSE value, if False returns RMSE value.
        num_outputs: Number of outputs in multioutput setting
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Example::
        Single output mse computation:

        >>> from torch import tensor
        >>> from torchmetrics.regression import MeanSquaredError
        >>> target = tensor([2.5, 5.0, 4.0, 8.0])
        >>> preds = tensor([3.0, 5.0, 2.5, 7.0])
        >>> mean_squared_error = MeanSquaredError()
        >>> mean_squared_error(preds, target)
        tensor(0.8750)

    Example::
        Multioutput mse computation:

        >>> from torch import tensor
        >>> from torchmetrics.regression import MeanSquaredError
        >>> target = tensor([[0.0, 0.0, 0.0], [0.0, 0.0, 0.0]])
        >>> preds = tensor([[1.0, 2.0, 3.0], [1.0, 2.0, 3.0]])
        >>> mean_squared_error = MeanSquaredError(num_outputs=3)
        >>> mean_squared_error(preds, target)
        tensor([1., 4., 9.])

    TFg        plot_lower_boundsum_squared_errortotal   N)squarednum_outputskwargsreturnc                    s   t  jf i | t|ts*td| || _t|trB|dksPtd| || _| jdt	
|dd | jdtddd d S )Nz4Expected argument `squared` to be a boolean but got r   z6Expected num_outputs to be a positive integer but got r   sum)defaultZdist_reduce_fxr   )super__init__
isinstancebool
ValueErrorr   intr   Z	add_statetorchzerosr   )selfr   r   r   	__class__ d/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/regression/mse.pyr   P   s    
zMeanSquaredError.__init__)predstargetr   c                 C   s4   t ||| jd\}}|  j|7  _|  j|7  _dS )z*Update state with predictions and targets.)r   N)r	   r   r   r   )r"   r'   r(   r   Zn_obsr%   r%   r&   updatec   s    zMeanSquaredError.update)r   c                 C   s   t | j| j| jdS )z&Compute mean squared error over state.)r   )r   r   r   r   )r"   r%   r%   r&   computej   s    zMeanSquaredError.compute)valaxr   c                 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 MeanSquaredError
            >>> metric = MeanSquaredError()
            >>> 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 MeanSquaredError
            >>> metric = MeanSquaredError()
            >>> values = []
            >>> for _ in range(10):
            ...     values.append(metric(randn(10,), randn(10,)))
            >>> fig, ax = metric.plot(values)

        )Z_plot)r"   r+   r,   r%   r%   r&   plotn   s    (r   )Tr   )NN)__name__
__module____qualname____doc__Zis_differentiableZhigher_is_betterZfull_state_updater   float__annotations__r   r   r   r   r   r)   r*   r   r   r   r   r   r-   __classcell__r%   r%   r#   r&   r      s,   
+   r   )typingr   r   r   r   r    r   r   Z&torchmetrics.functional.regression.mser   r	   Ztorchmetrics.metricr
   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r%   r%   r%   r&   <module>   s   