Skip to content

Commit

Permalink
Fix lambda value assert in NormalTS
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wojnar committed Apr 13, 2024
1 parent c02eb5b commit 753f879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reinforced_lib/agents/mab/normal_thompson_sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(
) -> None:
assert alpha > 0
assert beta > 0
assert lam > 0
assert lam >= 0

self.n_arms = n_arms

Expand Down

0 comments on commit 753f879

Please sign in to comment.