a
    d                     @   s   d dl mZmZmZmZmZ d dlZd dlmZ d dlm	Z	 d dl
mZmZmZmZmZ d dlmZ d dlmZmZ es~dgZG d	d
 d
e	ZdS )    )AnyDictOptionalSequenceUnionN)Tensor)Metric)
PREDS_TYPETARGETS_TYPE_squad_compute_squad_input_check_squad_update)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPE
SQuAD.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d< eed< eed< edd fddZeeddddZeeef dddZdeeeee f  ee edddZ  ZS )SQuADa  Calculate `SQuAD Metric`_ which is a metric for evaluating question answering models.

    This metric corresponds to the scoring script for version 1 of the Stanford Question Answering Dataset (SQuAD).

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

    -  ``preds`` (:class:`~Dict`): A Dictionary or List of Dictionary-s that map ``id`` and ``prediction_text`` to
       the respective values

       Example ``prediction``:

                .. code-block:: python

                    {"prediction_text": "TorchMetrics is awesome", "id": "123"}


    - ``target`` (:class:`~Dict`): A Dictionary or List of Dictionary-s that contain the ``answers`` and ``id`` in
      the SQuAD Format.

        Example ``target``:

        .. code-block:: python

            {
                'answers': [{'answer_start': [1], 'text': ['This is a test answer']}],
                'id': '1',
            }

        Reference SQuAD Format:

        .. code-block:: python

            {
                'answers': {'answer_start': [1], 'text': ['This is a test text']},
                'context': 'This is a test context.',
                'id': '1',
                'question': 'Is this a test?',
                'title': 'train test'
            }

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

    -  ``squad`` (:class:`~Dict`): A dictionary containing the F1 score (key: "f1"),
        and Exact match score (key: "exact_match") for the batch.

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

    Example:
        >>> from torchmetrics.text import SQuAD
        >>> preds = [{"prediction_text": "1976", "id": "56e10a3be3433e1400422b22"}]
        >>> target = [{"answers": {"answer_start": [97], "text": ["1976"]}, "id": "56e10a3be3433e1400422b22"}]
        >>> squad = SQuAD()
        >>> squad(preds, target)
        {'exact_match': tensor(100.), 'f1': tensor(100.)}

    Fis_differentiableThigher_is_betterfull_state_updateg        plot_lower_boundg      Y@plot_upper_boundf1_scoreexact_matchtotalN)kwargsreturnc                    sj   t  jf i | | jdtjdtjddd | jdtjdtjddd | jdtjdtjddd d S )Nr   r   )Zdtypesum)namedefaultZdist_reduce_fxr   r   )super__init__Z	add_statetorchZtensorfloatint)selfr   	__class__ `/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/text/squad.pyr!   g   s    zSQuAD.__init__)predstargetr   c                 C   sL   t ||\}}t||\}}}|  j|7  _|  j|7  _|  j|7  _dS )z*Update state with predictions and targets.N)r   r   r   r   r   )r%   r*   r+   Z
preds_dicttarget_dictr   r   r   r(   r(   r)   updateq   s
    zSQuAD.update)r   c                 C   s   t | j| j| jS )z5Aggregate the F1 Score and Exact match for the batch.)r   r   r   r   )r%   r(   r(   r)   computey   s    zSQuAD.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

            >>> # Example plotting a single value
            >>> from torchmetrics.text import SQuAD
            >>> metric = SQuAD()
            >>> preds = [{"prediction_text": "1976", "id": "56e10a3be3433e1400422b22"}]
            >>> target = [{"answers": {"answer_start": [97], "text": ["1976"]}, "id": "56e10a3be3433e1400422b22"}]
            >>> metric.update(preds, target)
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> # Example plotting multiple values
            >>> from torchmetrics.text import SQuAD
            >>> metric = SQuAD()
            >>> preds = [{"prediction_text": "1976", "id": "56e10a3be3433e1400422b22"}]
            >>> target = [{"answers": {"answer_start": [97], "text": ["1976"]}, "id": "56e10a3be3433e1400422b22"}]
            >>> values = [ ]
            >>> for _ in range(10):
            ...     values.append(metric(preds, target))
            >>> fig_, ax_ = metric.plot(values)

        )Z_plot)r%   r/   r0   r(   r(   r)   plot}   s    *r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   r#   r   r   r   r!   r	   r
   r-   r   strr.   r   r   r   r   r   r1   __classcell__r(   r(   r&   r)   r   "   s&   
:
 r   )typingr   r   r   r   r   r"   r   Ztorchmetricsr   Z"torchmetrics.functional.text.squadr	   r
   r   r   r   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r(   r(   r(   r)   <module>   s   