From e95492559a6ea60af18833143beda2490564bb0f Mon Sep 17 00:00:00 2001 From: Jocky Chiang <50538375+jiangzhuochi@users.noreply.github.com> Date: Tue, 27 Oct 2020 02:08:12 +0800 Subject: [PATCH] silence ok in row 114 --- pycopula/estimation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycopula/estimation.py b/pycopula/estimation.py index 6cebebe..2745d59 100644 --- a/pycopula/estimation.py +++ b/pycopula/estimation.py @@ -111,7 +111,7 @@ def log_likelihood(x): else: lh += sum([ np.log(copula.pdf_param(marginCDF[i], x[0:thetaOffset])) for i in range(n)]) # The second member : sum of PDF - print("OK") + # print("OK") lh += sum([ sum(np.log(marginals[j].pdf(np.transpose(X)[j], **hyperOptimizeParams[j]))) for j in range(d) ]) return lh