https://github.com/pymc-devs/pymc3

sort by:
Revision Author Date Message Commit Date
c378850 dynamically sets batches to min(n_samples, 100); closes #1606 16 December 2016, 19:01:14 UTC
7584b3b Merge pull request #1599 from Spaak/master replacing mutable default value with None 13 December 2016, 19:42:54 UTC
cfa709a replacing mutable default value with None 13 December 2016, 16:31:53 UTC
5be027f Merge pull request #1592 from ColCarroll/fix_travis_build Actually build on miniconda with python2.7 11 December 2016, 04:25:55 UTC
7b23fb5 Fix for py2/py3 11 December 2016, 03:53:36 UTC
0150b75 Fix python2 build errors 11 December 2016, 01:49:55 UTC
e7dc271 Actually build on miniconda with python2.7 11 December 2016, 00:44:21 UTC
60c7209 DOC Add list of software using and papers citing PyMC3. (#1588) * DOC Add list of software using and papers citing PyMC3. * DOC Add BEAT package. 10 December 2016, 12:26:33 UTC
ab51b6a Merge pull request #1586 from aloctavodia/master traceplot: auto-scale the max value of y 09 December 2016, 07:34:02 UTC
c8fdf88 traceplot: auto-scale the max value of y 09 December 2016, 02:00:39 UTC
1a83358 TST Remove stray debug print. 08 December 2016, 17:05:16 UTC
9b380da Merge pull request #1582 from pymc-devs/fix_scaling Fix NUTS scaling bounds #1581 08 December 2016, 16:59:51 UTC
74db63b TST Update Hamiltonian and NUTS samples. 08 December 2016, 16:16:28 UTC
84d3b06 BUG 362c8ee introduced a bug by switching the bounds of the scaling matrix. The bounds 1e-3 are also too stringent for some data types, like returns. This thus adjusts bounds to 1e-8 instead of 1e-3. 08 December 2016, 11:57:33 UTC
2d632de DOC Improve axes doc string in response to #1577. 07 December 2016, 08:25:21 UTC
784a773 DOC Add Probabilistic ML to summary. 06 December 2016, 13:57:20 UTC
2edbe6c Add mkl-service to build (#1572) 03 December 2016, 18:29:35 UTC
493d281 DOC Add baseball model. 02 December 2016, 06:35:57 UTC
67c1cd0 Add test to warn for algorithmic changes (#1570) 02 December 2016, 06:32:21 UTC
bdd1dc3 Incremented release version to 3.0.4c4 01 December 2016, 22:45:24 UTC
bbb4d57 Tweaked the BEST notebook (#1568) 01 December 2016, 08:06:27 UTC
010de60 Merge pull request #1546 from usptact/master Adding hierarhical partial pooling example 01 December 2016, 02:06:34 UTC
aab8625 Adding v2 of the hierarchical partial pooling notebook credits: Chris Fonnesback 01 December 2016, 00:09:01 UTC
a54a53e Kde boundaries (#1567) * use a fft-based kde instead of scipy.gaussian_kde * fix typo 30 November 2016, 20:18:14 UTC
68e53eb BUG placed context stack inside thread-local data space (#1555) * placed context stack inside thread-local data space * fixed thread-local context manager, and added a regression test * fixed docstring of #1552 regression test 30 November 2016, 10:15:45 UTC
8a6d87e Revert "ENH Add burn and thin kwargs to sample." (#1564) 29 November 2016, 16:30:01 UTC
1c9adc6 MAINT Re-enable trust_input. 29 November 2016, 10:30:52 UTC
a7410c2 Fix the TypeError issue #994 on Windows. (#1550) * Suggestion to fix the TypeError issue #994 on Windows. Errors occurs because some ndarrays with dtype=int32 are passed to the function delta_logp which expects ndarrays with dtype=int64 as inputs. Inputs are casted with `ndarray.astype(int)`, but on Windows, the Python 'int' type is treated as a 32-bit integer by NumPy. I suggest to remove the line with `f.trust_input = True` to ensure that Theano always checks the inputs and casts it if necessary and when possible. This fix resolves the issue on my computer: ``` Python version: 2.7.12 |Continuum Analytics, Inc.| (default, Jun 29 2016, 11:07:13) [MSC v.1500 64 bit (AMD64)] OS version: Windows-8.1-6.3.9600 ``` * Discrete super-class raises TypeError if dtype != 'int64'. Arguments for delta_logp in Metropolis.astep() are now casted to 'int64' when Metropolis handles a discrete model. 29 November 2016, 10:29:33 UTC
f61d8cd ENH Add burn and thin kwargs to sample. (#1562) * ENH Add burn and thin kwargs to sample. * MAINT Move new thin and burn behind start kwarg. Make test use kwargs. 29 November 2016, 10:09:32 UTC
2caa005 Fix #895: Bug pickling model instances (#1560) * added regression test for #895 * fixes #895 28 November 2016, 21:46:40 UTC
c0cc253 BUG Convert mean and mode to tensors before applying theano indexing. 28 November 2016, 04:36:13 UTC
8a59d87 DOC tidy notebooks (#1535) * Removed discrete_find_MAP.ipynb Cleanup of several notebooks Additional cleanup of notebooks Cleanup of additional notebooks Removed discrete_find_MAP.ipynb Cleanup of several notebooks Additional cleanup of notebooks Cleanup of additional notebooks WIP: Notebooks updated rugby analytics * Removed discrete_find_MAP.ipynb * Removed discrete_find_MAP.ipynb Cleanup of several notebooks Additional cleanup of notebooks Cleanup of additional notebooks Removed discrete_find_MAP.ipynb Cleanup of several notebooks Additional cleanup of notebooks Cleanup of additional notebooks WIP: Notebooks updated rugby analytics * Cleanup of several notebooks * Additional cleanup of notebooks * Cleanup of additional notebooks * More cleaned up notebooks (including divergent LKJ) * Removed discrete_find_MAP.ipynb Cleanup of several notebooks Additional cleanup of notebooks Cleanup of additional notebooks Removed discrete_find_MAP.ipynb Cleanup of several notebooks Additional cleanup of notebooks Cleanup of additional notebooks WIP: Notebooks updated rugby analytics * Cleanup of several notebooks * More cleaned up notebooks (including divergent LKJ) * DOC Rename pmf example. * DOC Remove glm-logistic as it timeouts on reading data. * DOC Revert LKJ model use Metropolis sampler as NUTS runs into non-singular errors. * DOC Remove NUTS scaling NB as it stops running and is mostly obsolete now that we auto-init in this manner. * DOC Change some samplers in model selection NB to make it faster. * DOC Change getting started guide to use auto-init and auto-assigned samplers. * DOC Remove link to paper as it's out-of-date. 28 November 2016, 04:20:11 UTC
9543afc Fixed bug in WAIC and LOO computation, also switched to SciPy's (#1557) logsumexp function for better numerical stability. 28 November 2016, 04:19:01 UTC
50d0e02 fix computation of test-values when distribution parameters are given by a theano TensorConstant (#1554) 26 November 2016, 16:45:10 UTC
8db9069 Adding notebook on Hierarchical Partial Pooling 26 November 2016, 03:30:03 UTC
0bdff96 Do not compute gradient in find_MAP() if it's not required. (#1551) * ENH Do not compute gradient in find_MAP() if it's not required. Closes #639. * MAINT Remove unused Poisson import. * BUG Add missing allfinite() call. Refactor model to models.py * TST Missed import. 25 November 2016, 15:26:35 UTC
818e4cd Merge pull request #1548 from Spaak/master some small changes to make advi respect theano.config.floatX 24 November 2016, 13:56:14 UTC
39c3281 some small changes to make advi respect theano.config.floatX and improve GPU compatibility 24 November 2016, 11:57:29 UTC
df93e9d MAINT Forward *kwargs to init_nuts to NUTS. 23 November 2016, 16:01:39 UTC
7cc7668 Adding hierarhical partial pooling example Credits: http://mc-stan.org/documentation/case-studies/pool-binary-trials.html 22 November 2016, 21:22:27 UTC
808d7dd Update text.py (#1545) 22 November 2016, 20:32:44 UTC
57b6f13 Merge pull request #1543 from pymc-devs/reduce_advi_n_init MAINT Reduce number of n_init advi steps. Closes #1540. 22 November 2016, 18:55:31 UTC
47dd7d7 MAINT Reduce number of n_init advi steps. Closes #1540. 21 November 2016, 08:34:18 UTC
27f663d Merge pull request #1542 from ColCarroll/scientific_notation ADVI uses scientific notation for greater than 5 digits. 21 November 2016, 08:25:44 UTC
e672ee9 ADVI uses scientific notation for greater than 5 digits. 21 November 2016, 03:48:24 UTC
ff28eff Removed tutorial.ipynb -- seems redundant in the presence of getting_started.ipynb 20 November 2016, 22:28:07 UTC
00eb604 Merge pull request #1539 from AustinRochford/example-dp-marginal-mixture Use marginalized mixture classes for DP example 20 November 2016, 20:00:33 UTC
2e4e842 Use marginalized mixture classes for DP example 20 November 2016, 19:23:57 UTC
296ed60 Merge pull request #1538 from springcoil/docker DOCS: Clarified the developing in docker part of CONTRIBUTING.md 20 November 2016, 18:29:55 UTC
806ad51 DOCS: Clarified the developing in docker part of Contributing 20 November 2016, 18:10:39 UTC
08556d7 Merge pull request #1537 from ColCarroll/rm_hierarchical Just remove hierarchical test 20 November 2016, 14:19:22 UTC
83a638f Just remove hierarchical test 19 November 2016, 17:40:42 UTC
b233972 DOC Add math to docs. Fix other doc string problems. 19 November 2016, 14:34:32 UTC
fffd959 Merge pull request #1495 from pymc-devs/constant Renamed ConstantDist to Constant 18 November 2016, 16:29:21 UTC
976393b Merge pull request #1533 from AustinRochford/advi-init-remove-sample_vp-progress Remove sample_vp progressbar for ADVI initialization 18 November 2016, 15:43:02 UTC
a70689e Merge branch 'constant' of github.com:pymc-devs/pymc3 into constant 18 November 2016, 15:27:55 UTC
bd80b46 Remove Constant step method test 18 November 2016, 15:27:40 UTC
93bd8e3 Removed Constant step method 18 November 2016, 15:27:40 UTC
45720d2 Renamed ConstantDist to Constant 18 November 2016, 15:27:40 UTC
71be307 Remove sample_vp progressbar for ADVI initialization 18 November 2016, 14:57:59 UTC
d57000d DOC Add None option for NUTS intialization. 18 November 2016, 14:11:30 UTC
dbf0654 ENH Add ADVI initializing for continuous models sampled using NUTS. 18 November 2016, 13:59:18 UTC
ad7dc8a Replaced fixed kappa with passed value (#1531) 18 November 2016, 10:21:34 UTC
59f500c TST Fix Rhat bad test by changing seed and starting point. 18 November 2016, 08:33:20 UTC
34e3f45 MAINT Convert some examples to new sample() api. Adapt tests. 17 November 2016, 15:04:41 UTC
b91d3be Merge pull request #1528 from taku-y/fix_sbtrans Fix stickbreaking transform dtype 17 November 2016, 13:32:00 UTC
34a8bd4 Fix stickbreaking transform dtype 17 November 2016, 10:48:17 UTC
85e0f9d REF Make all_continuous() a general purpose function. 16 November 2016, 09:46:05 UTC
4d53a36 WIP Perform initializing inside of sample instead of adding new sample_init() as per @fonnesbeck suggestion. 16 November 2016, 09:37:51 UTC
e3c8b63 DOC Add better docs and add advi_map. 16 November 2016, 07:17:36 UTC
85b46f6 MAINT Remove Metropolis init as it does not seem to work well. 16 November 2016, 07:17:36 UTC
dc203d9 DOC Convert more NBs to use sample_init(). 16 November 2016, 07:17:36 UTC
77b67d0 ENH Add sample_init() function and update examples. 16 November 2016, 07:17:36 UTC
1770be2 ENH Infer variable names directly from model in covariance estimation from trace. 16 November 2016, 07:17:36 UTC
25939fd Merge branch 'constant' of github.com:pymc-devs/pymc3 into constant 15 November 2016, 18:57:10 UTC
ba872ea Remove Constant step method test 15 November 2016, 18:56:51 UTC
a61cf73 Removed Constant step method 15 November 2016, 18:55:18 UTC
4f54823 ENH: Add Dockerfile for development inside a container (#1527) * Add Dockerfile for development inside a container * Use /Users/austin for portability * Put Dockerfile with scripts * Add script for starting development Docker container * Really add script this time * Modify options to create_testenv.sh * Shift while parsing arguments * Update dockerfile to run test suite * Add documentation for docker * Typo 14 November 2016, 20:41:46 UTC
7367f20 Typo 14 November 2016, 20:39:54 UTC
d8800bf Add documentation for docker 13 November 2016, 18:38:58 UTC
75dac62 Update dockerfile to run test suite 13 November 2016, 18:38:58 UTC
08fbeeb Shift while parsing arguments 13 November 2016, 18:38:58 UTC
9d38375 Modify options to create_testenv.sh 13 November 2016, 18:38:58 UTC
c489ea6 Really add script this time 13 November 2016, 18:38:58 UTC
655a4db Add script for starting development Docker container 13 November 2016, 18:38:58 UTC
f60492c Put Dockerfile with scripts 13 November 2016, 18:38:58 UTC
3180376 Use /Users/austin for portability 13 November 2016, 18:38:58 UTC
231e30f Add Dockerfile for development inside a container 13 November 2016, 18:38:58 UTC
082c982 Nuts speed up ~1.5x (#1522) * PERF Make NUTS 1.5x faster by moving E0 calculation outside of buildtree inner loop. * STY Refactor creation of functions. * DOC Adapt doc-string. * STY Pep8. * STY Only return scalar * DOC Typo * MAINT Move theano.tensor to tt. Remove obsolete p0 and q0 args from build_tree. 12 November 2016, 13:40:11 UTC
5716806 Renamed ConstantDist to Constant 12 November 2016, 10:08:00 UTC
0d5f292 MAINT glm fixes and refactoring (#1513) * Fixed a bug when it is not possible to run more than one glm models in a model * names are as were in previous versions by default * Added glm.from_xy constructor * Fixed confusing docstrings * Refactored Code 12 November 2016, 09:31:01 UTC
3f300e9 change circular transform from ElemwiseTransform to Transform. add circular domain for vonmises tests (#1520) 12 November 2016, 08:40:18 UTC
ebf26d5 Remove `verbose` argument 10 November 2016, 13:42:41 UTC
c04da31 Merge pull request #1516 from pymc-devs/transform_verbosity Changed verbosity threshold for variable transformation 09 November 2016, 16:42:06 UTC
1f5480f Used logging.debug instead of verbosity level 09 November 2016, 15:39:16 UTC
4ca4ef9 Changed verbosity threshold for variable transformation 09 November 2016, 15:26:45 UTC
af2dcb2 Merge branch 'constant' of github.com:pymc-devs/pymc3 into constant 08 November 2016, 21:53:34 UTC
fff053f Renamed ConstantDist to Constant 08 November 2016, 21:53:23 UTC
51f196d Accept `extent` as kwarg to kde_plot (#1509) 08 November 2016, 07:23:44 UTC
1e8549e Merge pull request #1508 from ColCarroll/unpin Unpin theano 08 November 2016, 06:29:20 UTC
back to top