compute_tpr# mlquantify.utils.method.compute_tpr(TP, FN)[source]# Compute the True Positive Rate (Recall) for a binary classification task. Parameters: TPintThe number of True Positives. FNintThe number of False Negatives. Returns: floatThe True Positive Rate (Recall).