Skip to content

Commit

Permalink
Update threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Jul 7, 2023
1 parent 47eacaa commit 2d64593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/05-linear-regression/05_linear-regression.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ let
ess_df = ess(chain)
@assert minimum(ess_df[:, :ess]) > 500 "Minimum ESS: $(minimum(ess_df[:, :ess])) - not > 700"
@assert mean(ess_df[:, :ess]) > 2_000 "Mean ESS: $(mean(ess_df[:, :ess])) - not > 2000"
@assert maximum(ess_df[:, :ess]) > 4_000 "Maximum ESS: $(maximum(ess_df[:, :ess])) - not > 4000"
@assert maximum(ess_df[:, :ess]) > 3_500 "Maximum ESS: $(maximum(ess_df[:, :ess])) - not > 3500"
end
```

Expand Down

0 comments on commit 2d64593

Please sign in to comment.