a
    do
                     @   sN   d dl mZ d dlZd dlmZmZ d dlmZ deeee edddZdS )	    )OptionalN)Tensortensor)"_check_retrieval_functional_inputs)predstargettop_kreturnc                 C   s   t | |\} }|du r | jd n|}t|tr6|dks>tdd| }| s\td| jdS |tj	| ddd	 d|  
 }||  S )
a  Compute the Fall-out for information retrieval, as explained in `IR Fall-out`_.

    Fall-out is the fraction of non-relevant documents retrieved among all the non-relevant 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 Fall-out@K, ``top_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.
        top_k: consider only the top k elements (default: ``None``, which considers them all)

    Returns:
        A single-value tensor with the fall-out (at ``top_k``) of the predictions ``preds`` w.r.t. the labels ``target``

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

    Example:
        >>> from  torchmetrics.functional import retrieval_fall_out
        >>> preds = tensor([0.2, 0.3, 0.5])
        >>> target = tensor([True, False, True])
        >>> retrieval_fall_out(preds, target, top_k=2)
        tensor(1.)

    Nr   z,`top_k` has to be a positive integer or None   g        )deviceT)ZdimZ
descending)r   shape
isinstanceint
ValueErrorsumr   r   torchZargsortfloat)r   r   r   Zrelevant r   s/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/functional/retrieval/fall_out.pyretrieval_fall_out   s    $r   )N)	typingr   r   r   r   Ztorchmetrics.utilities.checksr   r   r   r   r   r   r   <module>   s   