From d2afb13441e4de07a993d36416356d3f57866d93 Mon Sep 17 00:00:00 2001 From: Joep1999 <129067893+Joep1999@users.noreply.github.com> Date: Thu, 8 Jun 2023 09:38:49 +0200 Subject: [PATCH] Update interface.py The BIAS method was not available with the 'get method' function, because it was missing from the name list. Therefore I added it. --- pysteps/verification/interface.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pysteps/verification/interface.py b/pysteps/verification/interface.py index c38a55de..6e325f6f 100644 --- a/pysteps/verification/interface.py +++ b/pysteps/verification/interface.py @@ -172,6 +172,7 @@ def get_method(name, type="deterministic"): # categorical if name in [ "acc", + "bias", "csi", "f1", "fa",