From 781ce82b9026b05025df066ecc4670ef3548dd9f Mon Sep 17 00:00:00 2001 From: Alejandro Moreo Date: Tue, 2 Jul 2024 09:52:00 +0200 Subject: [PATCH] np.product --> np.prod --- quapy/method/aggregative.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quapy/method/aggregative.py b/quapy/method/aggregative.py index c7a9dbd..d9f6184 100644 --- a/quapy/method/aggregative.py +++ b/quapy/method/aggregative.py @@ -781,7 +781,7 @@ class EMQ(AggregativeSoftQuantifier): Px = posterior_probabilities Ptr = np.copy(tr_prev) - if np.product(Ptr) == 0: # some entry is 0; we should smooth the values to avoid 0 division + if np.prod(Ptr) == 0: # some entry is 0; we should smooth the values to avoid 0 division Ptr += epsilon Ptr /= Ptr.sum()