Skip to content

Commit

Permalink
remove errant print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jul 17, 2019
1 parent f232b55 commit 155e9bb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lifelines/fitters/__init__.py
Expand Up @@ -1587,7 +1587,6 @@ def _compute_sandwich_errors(self, Ts, E, weights, entries, Xs):
J = np.zeros((n_params, n_params))

for ts, e, w, s, xs in zip(safe_zip(*Ts), E, weights, entries, Xs.iterdicts()):
print(ts, e, w, s, xs)
score_vector = ll_gradient(params, ts, e, w, s, xs)
J += np.outer(score_vector, score_vector)

Expand Down

0 comments on commit 155e9bb

Please sign in to comment.