Skip to content

Commit

Permalink
removed debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelfonseca committed Nov 3, 2023
1 parent 0295426 commit aba8849
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fitburst/analysis/fitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,6 @@ def compute_hessian(self, data: float, parameter_list: list) -> float:
parameter_dict, self.model, component=component
)

print(f"mixed-deriv for {current_par_1}, {current_par_2}: {current_deriv_mixed.sum()}")

# finally, compute the hessian here.
current_hes = 2 * (current_deriv_1 * current_deriv_2 - residual * current_deriv_mixed)
hessian[current_par_idx_1, current_par_idx_2] = np.sum(current_hes * self.weights[:, None] ** 2)
Expand Down

0 comments on commit aba8849

Please sign in to comment.