o
    yi	                  	   @   sT   d dl mZ d dlZd dlmZmZ d dlmZ ddededee defd	d
ZdS )    )OptionalN)Tensortensor)"_check_retrieval_functional_inputspredstargetkreturnc                 C   sf   t | |\} }|du r| jd }t|tr|dkstd|tj| ddd d|  }|dk S )ay  Computes the hit rate (for information retrieval). The hit rate is 1.0 if there is at least one relevant
    document among all the top `k` retrieved documents.

    ``preds`` and ``target`` should be of the same shape and live on the same device. If no ``target`` is ``True``,
    ``0`` is returned. ``target`` must be either `bool` or `integers` and ``preds`` must be ``float``,
    otherwise an error is raised. If you want to measure HitRate@K, ``k`` must be a positive integer.

    Args:
        preds: estimated probabilities of each document to be relevant.
        target: ground truth about each document being relevant or not.
        k: consider only the top k elements (default: `None`, which considers them all)

    Returns:
        a single-value tensor with the hit rate (at ``k``) of the predictions ``preds`` w.r.t. the labels ``target``.

    Raises:
        ValueError:
            If ``k`` parameter is not `None` or an integer larger than 0

    Example:
        >>> preds = tensor([0.2, 0.3, 0.5])
        >>> target = tensor([True, False, True])
        >>> retrieval_hit_rate(preds, target, k=2)
        tensor(1.)
    Nr   z(`k` has to be a positive integer or NoneT)dim
descending)	r   shape
isinstanceint
ValueErrortorchargsortsumfloat)r   r   r   relevant r   ^/home/ubuntu/.local/lib/python3.10/site-packages/torchmetrics/functional/retrieval/hit_rate.pyretrieval_hit_rate   s   
 r   )N)	typingr   r   r   r   torchmetrics.utilities.checksr   r   r   r   r   r   r   <module>   s
   $