From 10640c44b86df88a9974f31a5d24e6caa28b35dd Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 5 May 2020 21:24:58 +0200 Subject: [PATCH] [engine.evaluator] Increase the number of evaluation thresholds to 1000 --- bob/ip/binseg/engine/evaluator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/ip/binseg/engine/evaluator.py b/bob/ip/binseg/engine/evaluator.py index 07a7c86f..1bac7351 100644 --- a/bob/ip/binseg/engine/evaluator.py +++ b/bob/ip/binseg/engine/evaluator.py @@ -264,7 +264,7 @@ def run( """ # Collect overall metrics - bins = 100 # number of thresholds to analyse for + bins = 1000 # number of thresholds to analyse for data = {} for sample in tqdm(dataset): -- GitLab