cmdstan
cmdstan copied to clipboard
CmdStan, the command line interface to Stan
#### Summary: Improve error hadling by mapping `stan::services::error_codes` to messages that make sense to end-user. #### Description: Module `stan::services` adopted a small set of POSIX error codes following Unix conventions...
#### Description: We should add Jenkins tests that would test typical makefile issues we have seen over time that we have to manually check every time we change the makefiles:...
#### Summary: As json_data is being used in CmdStan, it does this: ``` stan::json::json_data d(stream); stream.close(); std::shared_ptr result = std::make_shared(d); return result; ``` The class `json_data` is a subclass of...
#### Summary: This issue is a place to discuss pain points and solutions for the problem of installing a CmdStan release tar.gz file. This solution doesn't include installing CmdStan from...
#### Submisison Checklist - [ ] Run tests: `./runCmdStanTests.py src/test` - [x] Declare copyright holder and open-source license: see below #### Summary: This is the interface component to https://github.com/stan-dev/stan/issues/2814 ####...
#### Summary: ``` make examples/bernoulli/bernoulli examples/bernoulli/bernoulli sample save_warmup=1 data file=examples/bernoulli/bernoulli.data.R output file=output.csv ``` Edit output.csv and add a divergence to the post warmup samples. (here's one: [output.csv.txt](https://github.com/stan-dev/cmdstan/files/5575566/output.csv.txt)) ``` bin/diagnose output.csv...
#### Summary: On Windows with `clang++` we get caught in an infinite loop of re-compiling the same files. I exhibited this on clang 9.0.0. I am investigating it and will...
#### Summary: If we use the first log density evaluation, it's going to include things like transfer costs of data for MPI. We'll get a more accurate measurement for running...
#### Summary: Add a `help` option to `runCmdStanTests.py`. Currently, there's only usage info. #### Description: Stan's `runTests.py` has a help option that looks like: ``` $ ./runTests.py -h usage: runTests.py...
CmdStan provides error messages that provide incorrect advice on how to correct misspecified arguments. For example, I first try to set `max_depth` via the following command line: ../stan_models/rff-fb id=1 data...