- Support for more cmdstan sample command line arguments. That is,
Stan::Model#fit
now supports the following (optional) keyword arguments:warmup
- an integer specifying how many samples should used for an initial warm up phasesamples
- integer number specifying how many samples should get generated at allsave_warmup
- boolean value (defaults tofalse
that specifies if warmup samples should get streamed to output, toothin
- integer value that states the period between saved samples. Must be greater than 0. Defaults to 1.
- Added simple output capturing Ruby object (
Stan::FitResult
) which offers access to posterior distributions of the model parameters
- Renaming to CmdStanRb (See #5)
- Make model storage location configurable (#2)
- Make loading previously compiled models work
- Initial Version