From 7d92ec772b9da354cb68cab32d1e77a0bf742153 Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Tue, 12 Aug 2025 18:49:21 +0100 Subject: [PATCH] Fix number formatting in gallery plot --- src/batdetect2/plotting/matches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/batdetect2/plotting/matches.py b/src/batdetect2/plotting/matches.py index 3a001a4..d462954 100644 --- a/src/batdetect2/plotting/matches.py +++ b/src/batdetect2/plotting/matches.py @@ -179,7 +179,7 @@ def plot_false_positive_match( plt.text( start_time, high_freq, - f"False Positive \nScore: {match.pred_score} \nTop Class: {match.pred_class} \nTop Class Score: {match.pred_class_score:.2f} ", + f"False Positive \nScore: {match.pred_score:.2f} \nTop Class: {match.pred_class} \nTop Class Score: {match.pred_class_score:.2f} ", va="top", ha="right", color=color,