You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The laplace service method added in #3148 produces a CSV file where the final two columns are log_p and log_q. This has two issues:
All other services have "algorithmic parameters" (e.g. lp__ for sampling, log_g__ for ADVI) output before the model's parameters
These names are not suffixed with the usual two underscores, which means a user can write a model with a parameter named log_p and receive a confounding CSV header which many libraries will refuse to parse:
log_p,log_p,log_q
0.281593,-6.77835,-0.194159
Current Version:
v2.32.0
The text was updated successfully, but these errors were encountered:
The laplace service method added in #3148 produces a CSV file where the final two columns are
log_p
andlog_q
. This has two issues:lp__
for sampling,log_g__
for ADVI) output before the model's parameterslog_p
and receive a confounding CSV header which many libraries will refuse to parse:Current Version:
v2.32.0
The text was updated successfully, but these errors were encountered: