Skip to content

Commit

Permalink
val
Browse files Browse the repository at this point in the history
  • Loading branch information
StFroese committed Dec 15, 2024
1 parent 2aad9b4 commit 88dd40a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions titrate/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def toys_ts(self, n_toys, poi_val, poi_true_val):
)
for _ in range(n_toys)
]
toys_ts = [future.result()[0] for future in futures]
toys_valid = [future.result()[1] for future in futures]
toys_ts = [future.result() for future in futures]
toys_valid = [True for _ in range(len(toys_ts))]

# to ndarray
toys_ts = np.array(toys_ts).ravel()
Expand Down

0 comments on commit 88dd40a

Please sign in to comment.