Andrew Johnson
Andrew Johnson
We can't use `log_sum_exp` here since we're after the sum of the logs, not the log of the sum of the exps. But it did make me have a look...
A couple of other accumulator thoughts. At the moment, Eigen types are summed and then appended to the buffer, but std::vector types are simply elementwise appended - ostensibly for the...
Great! I've just about finished up a PR with these changes, will open that later today
@jgabry I'll tackle this as well
@avehtari The [`cmdstanpy` implementation of `create_inits`](https://github.com/stan-dev/cmdstanpy/blob/078c43a3955e584a036dfd22c9da5e54dc230963/cmdstanpy/stanfit/pathfinder.py#L35) just returns a random draw from the existing pathfinder estimates, but your example above is performing an additional PSIS step before selecting the first...
> Not to be a member of the peanut gallery, but wouldn't that mean this package basically has to maintain both something at the level of complexity of rstan _and_...
@SteveBronder - just to check something with Pathfinder and inits - when multiple init files are present (one for each path), is it normal for the output to only show...
If the build/installation error is coming from the TBB, you can instead set `cmdstan` to use the libraries and headers from the `RcppParallel` package: ```r library(cmdstanr) cmdstan_make_local(cpp_options = list( TBB_INC=system.file("include",...
You can change the directory where executables are stored using the `output_dir` argument. As for the admin privileges, it can differ by organisation. Some organisations will only allow a executing...
I've suggested a fix for this in #918, but it's likely to be a month or two before I've got time to work on it unfortunately.