pymc2
pymc2 copied to clipboard
THIS IS THE **OLD** PYMC PROJECT (VERSION 2). PLEASE USE PYMC INSTEAD:
Hello, currently pymc.Matplot.plot saves the images it produces to disk, resulting in image files appearing in whatever directory the user is in when the plotting commands are run, and it...
AFAIK, the multivariate hypergeometric should depend on the number of draws performed (n, in the wikipedia nomenclature) and the number of each marble type (K_i, in the wikipedia nomenclature). However,...
I have a Bayesian network and to model it I am using containers. I have been trying to make sure that the parents/children connections are correct before I proceed, and...
If you import pymc and try to pickle, as example, `Ellipsis` object, then sometimes you will see an error `ImportError: No module named 'winreg'`: ``` > python -c "import pymc,...
``` def forward_radius(Flux, Mass, A_const=A, C_const=C, sw=log_switchpoint): if(Flux < 10**sw.value): muR = C_const print('THERE') else: muR = A_const*log10(Flux) + C_const - A_const*sw print('HERE') return muR R = np.empty(N, dtype=object) for...
Moved from pymc-devs/pymc3#543 Connecting a single Stochastic variable to a large number of other Stochastic variables takes a lot of memory. E.g. ``` python def create_model(i, a): b = pymc.Normal('b_%i'...
I'm writing a wrapper around pymc for dynamic models (such as HMMs, but also more complex hierarchical dynamic models.) One simple strategy is to unroll dynamic models over a time...
I encountered this bug with my own model (https://github.com/choderalab/gbff/issues/10), but the following code reproduces it with the example models in pymc. Removing the `save_interval` flag fixes the issue. ``` import...
### Describe the issue: I have been running Gelman Rubin convergence tests after running the HDDM function. and they were working fine up until 13th October 2023. I have in...