This project is mirrored from https://github.com/pymc-devs/pymc3.git.
Pull mirroring updated .
- 28 Mar, 2020 2 commits
-
-
Tushar Mittal authored
-
rpgoldman authored
-
- 26 Mar, 2020 1 commit
-
-
Robert P. Goldman authored
The layout of parameters sections was wrong. Also pruned some dead code.
-
- 24 Mar, 2020 1 commit
-
-
Demetri Pananos authored
* ls * Changes to ode.rst to make docs appear. * Should be working now
-
- 20 Mar, 2020 2 commits
-
-
michaelosthege authored
* add test for xarray input to sample_posterior_predictive * support for xarray.Dataset as trace argument to sample_posterior_predictive and fast_sample_posterior_predictive. * closes #3828 Co-authored-by:
Michael Osthege <zufallsprinzip@hotmail.de> Co-authored-by:
rpgoldman <rpgoldman@goldman-tribe.org>
-
rpgoldman authored
* Demonstrate issue 3793. * Give Data model-relative names. Use Model.name_for() to relativize pm.Data names. * Move test description into docstring * mention changes to pm.Data naming closes #3793 Co-authored-by:
michaelosthege <thecakedev@hotmail.com>
-
- 19 Mar, 2020 5 commits
-
-
rpgoldman authored
Fix computation of samples argument in sample_posterior_predictive Solves #3840
-
Robert P. Goldman authored
Previously, if the argument to sample_posterior_predictive was a list of points, AND the samples argument was not supplied, then spp would error out, because the code for computing samples assumed that the trace argument was a MultiTrace.
-
Robert P. Goldman authored
-
Ahan M R authored
* updated RELEASE-NOTES.md Added the deprecation of `sd` with `sigma` in newer version with DeprecationWarning on usage of `sd`. * Update RELEASE-NOTES.md
-
Ahan M R authored
* partially fixes #3688 * fixes #3688 sd deprecated to sigma
-
- 17 Mar, 2020 3 commits
-
-
Brandon T. Willard authored
Fixed small but critical typo in Theano Op example (#3832)
-
DeliciousHair authored
-
Tom McClintock authored
-
- 11 Mar, 2020 1 commit
-
-
michaelosthege authored
* include n_tune, n_draws and t_sampling in SamplerReport * count tune/draw samples instead of trusting parameters (because of KeyboardInterrupt) * fall back to tune and len(trace) if tune stat is unavailable * add test for SamplerReport n_tune and n_draws * clarify that n_tune are not necessarily in the trace * use actual number of chains to compute totals * mention new SamplerReport properties in release notes Co-authored-by:
Michael Osthege <m.osthege@fz-juelich.de>
-
- 10 Mar, 2020 20 commits
-
-
Luciano Paz authored
Second try to vectorize sample_posterior_predictive.
-
rpgoldman authored
Co-Authored-By:
Thomas Wiecki <thomas.wiecki@gmail.com>
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
I believe that this reshaping -- which flattened the samples -- was a hold-over from the pointwise variant. It was causing test failures.
-
Robert P. Goldman authored
-
Robert P. Goldman authored
Local class declared after reference.
-
Robert P. Goldman authored
The contextvars library is used to make the vectorized version of sample_posterior_predictive compatible with the legacy version. contextvars was added in python 3.7, but there is a compatibility library for 3.6 This is an attempt to ensure it will be loaded in python 3.6
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
When sampling fast_posterior_predictive gets some values with a degenerate extra dimension (e.g., 1 row of 200 values, instead of just 200 values: (1, 200) instead of (200,) ). Trim these off. It would be better if I could figure out where these are coming from and avoid that.
-
Robert P. Goldman authored
More carefully check the results of posterior predictive sampling with pm.Data.
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
Per @lucianopaz suggestion, I have renamed my new version as fast_sample_posterior_predictive(), and restored the old version. This is not just nice for testing, but also is critical because we cannot currently vectorize the sampling for multivariate distributions.
-
Robert P. Goldman authored
Created a new _TraceDict class that represents a trace as a dictionary of variable names to numpy arrays, and use that as the internal representation, per @lucianopaz suggestion. Made this a class so that it can have varnames and a length, like the MultiTrace. Added a couple of translation tests.
-
Robert P. Goldman authored
-
Robert P. Goldman authored
Incorporate fix from @lucianopaz (98635eb5) and made corresponding changes to posterior_predictive.
-
- 09 Mar, 2020 5 commits
-
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
-
Robert P. Goldman authored
Needed to change how theano functions were computed in vectorized variant of spp.
-
Robert P. Goldman authored
In general, the recursive calls to `draw_values` were not handled properly because I had bugs in the way I handled `ContextManager` objects. I believe those bugs are all fixed now.
-