From 4e7721a503f239ca2bbd0af655aabca678a4022e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Ribeiro=20Mendes=20J=C3=BAnior?= Date: Sun, 30 Sep 2018 13:23:20 -0300 Subject: [PATCH] unnecessary line can be removed (issue #2) --- evm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/evm.py b/evm.py index 14cf1f8..606a392 100644 --- a/evm.py +++ b/evm.py @@ -184,7 +184,6 @@ def predict(X,points,weibulls,labels): fused_probs = np.array(fused_probs) max_ind = np.argmax(fused_probs,axis=0) predicted_labels = ulabels[max_ind] - confidence = fused_probs[max_ind] return predicted_labels,fused_probs def load_data(fname):