o
    yia                     @   s`   d dl 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 G dd deZdS )    )AnyDictN)Tensor)Metric)
PREDS_TYPETARGETS_TYPE_squad_compute_squad_input_check_squad_updatec                       s   e Zd ZU dZdZeed< dZeed< dZeed< e	ed< e	ed< e	ed	< d
e
f fddZdededdfddZdeee	f fddZ  ZS )SQuADa}  Calculate `SQuAD Metric`_ which 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 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_updatef1_scoreexact_matchtotalkwargsc                    sj   t  jd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   )dtypesum)namedefaultdist_reduce_fxr   r    )super__init__	add_statetorchtensorfloatint)selfr   	__class__r   K/home/ubuntu/.local/lib/python3.10/site-packages/torchmetrics/text/squad.pyr   ^   s    zSQuAD.__init__predstargetreturnNc                 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%   
preds_dicttarget_dictr   r   r   r   r   r#   updateh   s
   zSQuAD.updatec                 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#   computep   s   zSQuAD.compute)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   r   r   r   r   r)   r   strr*   __classcell__r   r   r!   r#   r      s   
 8
r   )typingr   r   r   r   torchmetricsr   "torchmetrics.functional.text.squadr   r   r   r	   r
   r   r   r   r   r#   <module>   s   	