Skip to content

Commit

Permalink
Fix typo in error estimation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tillahoffmann committed Sep 14, 2023
1 parent 71c0836 commit e008d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion profile/profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def load_lps(filename: str) -> np.ndarray:
errors = []
for fit, eta, data in zip(result["fits"], result["etas"], result["data"]):
if fit is None:
mses.append(np.nan)
errors.append(np.nan)
continue
test_idx = np.setdiff1d(1 + np.arange(size), data["observed_idx"]) - 1
if not test_idx.size:
Expand Down

0 comments on commit e008d70

Please sign in to comment.