compute_fpr# mlquantify.utils.method.compute_fpr(FP, TN)[source]# Compute the False Positive Rate for a binary classification task. Parameters: FPintThe number of False Positives. TNintThe number of True Negatives. Returns: floatThe False Positive Rate.