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