Skip to content

Commit

Permalink
20230715
Browse files Browse the repository at this point in the history
  • Loading branch information
paschermayr committed Jul 15, 2023
1 parent 700778f commit 0f9637c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Baytes"
uuid = "72ddfcfc-6e9d-43df-829b-7aed7c549d4f"
authors = ["Patrick Aschermayr <[email protected]>"]
version = "0.3.7"
version = "0.3.8"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
3 changes: 3 additions & 0 deletions src/sampling/chain.jl
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,14 @@ function chainsummary(
## Flatten parameter to 3D array
computingtime = progress.enabled ? (progress.tlast - progress.tinit) : NaN
arr3D = trace_to_3DArray(trace, transform)
#=
#NOTE: New Rhat/ESS implementation should just default to NaN if parameter are fixed, hence we can keep them in the output diagnostics
## Check if any MCMC sampler was stuck in any chain, in which case chainsummary will be skipped
stuck, paramchain = is_stuck(arr3D)
if stuck
return stuck, paramchain, nothing
end
=#
## Compute summary statistics
chainparamdiagnostic = chainparamdiagnostics(arr3D, computingtime)
paramdiagnostic = paramdiagnostics(arr3D)
Expand Down

2 comments on commit 0f9637c

@paschermayr
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/87559

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.8 -m "<description of version>" 0f9637c099c9d0fec2d5d2afcc614761baf3c0a2
git push origin v0.3.8

Please sign in to comment.