Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielandresarcones committed Aug 28, 2024
1 parent 06506a3 commit f267172
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 60 deletions.
56 changes: 0 additions & 56 deletions probeye/definition/biased_inverse_problem.py

This file was deleted.

2 changes: 1 addition & 1 deletion probeye/inference/bias/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# module imports
from probeye.inference.bias import solver
from probeye.inference.bias import solver, likelihood_models
4 changes: 1 addition & 3 deletions probeye/inference/scipy/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,8 @@ def loglike(self, theta: np.ndarray) -> float:
theta, likelihood_model.prms_def
)
# evaluate the loglike-contribution for the likelihood model
ll_i = likelihood_model.loglike(response, residuals, prms_likelihood)
ll += ll_i
ll += likelihood_model.loglike(response, residuals, prms_likelihood)

# return ll, response, residuals
return ll

def get_start_values(
Expand Down

0 comments on commit f267172

Please sign in to comment.