{ "info": { "author": "PyMC Developers", "author_email": "pymc.devs@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics" ], "description": ".. image:: https://cdn.rawgit.com/pymc-devs/pymc3/master/docs/logos/svg/PyMC3_banner.svg\n :height: 100px\n :alt: PyMC3 logo\n :align: center\n\n|Build Status| |Coverage| |NumFOCUS_badge| |Binder|\n\nPyMC3 is a Python package for Bayesian statistical modeling and Probabilistic Machine Learning\nfocusing on advanced Markov chain Monte Carlo (MCMC) and variational inference (VI)\nalgorithms. Its flexibility and extensibility make it applicable to a\nlarge suite of problems.\n\nCheck out the `getting started guide `__, or\n`interact with live examples `__\nusing Binder!\n\nFeatures\n========\n\n- Intuitive model specification syntax, for example, ``x ~ N(0,1)``\n translates to ``x = Normal('x',0,1)``\n- **Powerful sampling algorithms**, such as the `No U-Turn\n Sampler `__, allow complex models\n with thousands of parameters with little specialized knowledge of\n fitting algorithms.\n- **Variational inference**: `ADVI `__\n for fast approximate posterior estimation as well as mini-batch ADVI\n for large data sets.\n- Relies on `Theano `__ which provides:\n * Computation optimization and dynamic C compilation\n * Numpy broadcasting and advanced indexing\n * Linear algebra operators\n * Simple extensibility\n- Transparent support for missing value imputation\n\nGetting started\n===============\n\nIf you already know about Bayesian statistics:\n----------------------------------------------\n\n\n- `API quickstart guide `__\n- The `PyMC3 tutorial `__\n- `PyMC3 examples `__ and the `API reference `__\n\n\n\nLearn Bayesian statistics with a book together with PyMC3:\n----------------------------------------------------------\n\n- `Probabilistic Programming and Bayesian Methods for Hackers `__: Fantastic book with many applied code examples.\n- `PyMC3 port of the book \"Doing Bayesian Data Analysis\" by John Kruschke `__ as well as the `second edition `__: Principled introduction to Bayesian data analysis.\n- `PyMC3 port of the book \"Statistical Rethinking A Bayesian Course with Examples in R and Stan\" by Richard McElreath `__\n- `PyMC3 port of the book \"Bayesian Cognitive Modeling\" by Michael Lee and EJ Wagenmakers `__: Focused on using Bayesian statistics in cognitive modeling.\n- `Bayesian Analysis with Python `__ (second edition) by Osvaldo Martin: Great introductory book. (`code `__ and errata).\n\nPyMC3 talks\n-----------\n\nThere are also several talks on PyMC3 which are gathered in this `YouTube playlist `__\n\nInstallation\n============\n\nThe latest release of PyMC3 can be installed from PyPI using ``pip``:\n\n::\n\n pip install pymc3\n\n**Note:** Running ``pip install pymc`` will install PyMC 2.3, not PyMC3,\nfrom PyPI.\n\nOr via conda-forge:\n\n::\n\n conda install -c conda-forge pymc3\n\nPlotting is done using `ArviZ `__\nwhich may be installed separately, or along with PyMC3:\n\n::\n\n pip install pymc3[plots]\n\nThe current development branch of PyMC3 can be installed from GitHub, also using ``pip``:\n\n::\n\n pip install git+https://github.com/pymc-devs/pymc3\n\nTo ensure the development branch of Theano is installed alongside PyMC3\n(recommended), you can install PyMC3 using the ``requirements.txt``\nfile. This requires cloning the repository to your computer:\n\n::\n\n git clone https://github.com/pymc-devs/pymc3\n cd pymc3\n pip install -r requirements.txt\n\nHowever, if a recent version of Theano has already been installed on\nyour system, you can install PyMC3 directly from GitHub.\n\nAnother option is to clone the repository and install PyMC3 using\n``python setup.py install`` or ``python setup.py develop``.\n\n\nDependencies\n============\n\nPyMC3 is tested on Python 3.6 and depends on Theano, NumPy,\nSciPy, and Pandas (see ``requirements.txt`` for version\ninformation).\n\nOptional\n--------\n\nIn addtion to the above dependencies, the GLM submodule relies on\n`Patsy `__.\n\n\nCiting PyMC3\n============\n\nSalvatier J., Wiecki T.V., Fonnesbeck C. (2016) Probabilistic programming\nin Python using PyMC3. PeerJ Computer Science 2:e55\n`DOI: 10.7717/peerj-cs.55 `__.\n\nContact\n=======\n\nWe are using `discourse.pymc.io `__ as our main communication channel. You can also follow us on `Twitter @pymc_devs `__ for updates and other announcements.\n\nTo ask a question regarding modeling or usage of PyMC3 we encourage posting to our Discourse forum under the `\u201cQuestions\u201d Category `__. You can also suggest feature in the `\u201cDevelopment\u201d Category `__.\n\nTo report an issue with PyMC3 please use the `issue tracker `__.\n\nFinally, if you need to get in touch for non-technical information about the project, `send us an e-mail `__.\n\nLicense\n=======\n\n`Apache License, Version\n2.0 `__\n\n\nSoftware using PyMC3\n====================\n\n- `Exoplanet `__: a toolkit for modeling of transit and/or radial velocity observations of exoplanets and other astronomical time series.\n- `Bambi `__: BAyesian Model-Building Interface (BAMBI) in Python.\n- `pymc3_models `__: Custom PyMC3 models built on top of the scikit-learn API.\n- `PMProphet `__: PyMC3 port of Facebook's Prophet model for timeseries modeling\n- `webmc3 `__: A web interface for exploring PyMC3 traces\n- `sampled `__: Decorator for PyMC3 models.\n- `NiPyMC `__: Bayesian mixed-effects modeling of fMRI data in Python.\n- `beat `__: Bayesian Earthquake Analysis Tool.\n- `BayesFit `__: Bayesian Psychometric Curve Fitting Tool.\n\nPlease contact us if your software is not listed here.\n\nPapers citing PyMC3\n===================\n\nSee `Google Scholar `__ for a continuously updated list.\n\nContributors\n============\n\nSee the `GitHub contributor\npage `__\n\nSupport\n=======\n\nPyMC3 is a non-profit project under NumFOCUS umbrella. If you want to support PyMC3 financially, you can donate `here `__.\n\nSponsors\n========\n\n|NumFOCUS|\n\n|Quantopian|\n\n|ODSC|\n\n.. |Binder| image:: https://mybinder.org/badge.svg\n :target: https://mybinder.org/v2/gh/pymc-devs/pymc3/master?filepath=%2Fdocs%2Fsource%2Fnotebooks\n.. |Build Status| image:: https://travis-ci.org/pymc-devs/pymc3.svg?branch=master\n :target: https://travis-ci.org/pymc-devs/pymc3\n.. |Coverage| image:: https://coveralls.io/repos/github/pymc-devs/pymc3/badge.svg?branch=master\n :target: https://coveralls.io/github/pymc-devs/pymc3?branch=master\n.. |NumFOCUS| image:: https://www.numfocus.org/wp-content/uploads/2017/03/1457562110.png\n :target: http://www.numfocus.org/\n.. |Quantopian| image:: https://raw.githubusercontent.com/pymc-devs/pymc3/master/docs/quantopianlogo.jpg\n :target: https://quantopian.com\n.. |NumFOCUS_badge| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A\n :target: http://www.numfocus.org/\n.. |ODSC| image:: https://raw.githubusercontent.com/pymc-devs/pymc3/master/docs/odsc_logo.png\n :target: https://odsc.com\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/pymc-devs/pymc3", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "pymc3", "package_url": "https://pypi.org/project/pymc3/", "platform": "", "project_url": "https://pypi.org/project/pymc3/", "project_urls": { "Homepage": "http://github.com/pymc-devs/pymc3" }, "release_url": "https://pypi.org/project/pymc3/3.7/", "requires_dist": null, "requires_python": "", "summary": "Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano", "version": "3.7" }, "last_serial": 5347895, "releases": { "3.0": [ { "comment_text": "", "digests": { "md5": "1b950c7b4f8710a68b82429346253eb5", "sha256": "22e3a541275df145945f82455eb67db61eb7821b6ff1cebb40fa794ac6b0c5b9" }, "downloads": -1, "filename": "pymc3-3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1b950c7b4f8710a68b82429346253eb5", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 173991, "upload_time": "2017-01-09T14:12:12", "url": "https://files.pythonhosted.org/packages/67/20/41934cb658bf6e68936f14317ca8b798202f3a4856a90d730b44e379d2e9/pymc3-3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe27a0e72848918500f7d47758184ee9", "sha256": "7d7f43f8d034b9c0918662cb193557d7f729c433acd1ce3786c0a5b6d436d934" }, "downloads": -1, "filename": "pymc3-3.0.tar.gz", "has_sig": false, "md5_digest": "fe27a0e72848918500f7d47758184ee9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 992625, "upload_time": "2017-01-09T14:12:03", "url": "https://files.pythonhosted.org/packages/2b/89/875b02c72d5f0fe4a81acf665cb99c9895c7b022e0028849f098f286766f/pymc3-3.0.tar.gz" } ], "3.0.rc1": [ { "comment_text": "", "digests": { "md5": "8e8230c84c2c5375eedd6f1a877359fb", "sha256": "f860f522408361df59144f97cbebdee1a365205d3e37c192bda770a1ff39841a" }, "downloads": -1, "filename": "pymc3-3.0rc1-py2.7.egg", "has_sig": false, "md5_digest": "8e8230c84c2c5375eedd6f1a877359fb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1034059, "upload_time": "2016-09-06T20:26:41", "url": "https://files.pythonhosted.org/packages/3d/52/4e9b4cd05fe81d0a0c08f5f5e0a1a117c174c3d6f757308b975fbc194662/pymc3-3.0rc1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fe3a51bf93e8291297aa33f0bda5c3fc", "sha256": "870753294b9ed5dcf8e3e615499c68546c936f7540969651df521135913ef6b6" }, "downloads": -1, "filename": "pymc3-3.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe3a51bf93e8291297aa33f0bda5c3fc", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 769621, "upload_time": "2016-09-06T20:25:56", "url": "https://files.pythonhosted.org/packages/24/37/e2722dca8159873716d2c2d7190242d26faa2f11eaffb14dff62ade3e3f3/pymc3-3.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c5761094c0254cd17c3280f1d857aca", "sha256": "d0d30920a39181cdd0a740450ee394a8f0558e9a4478e22c83d79163cc4cb6fc" }, "downloads": -1, "filename": "pymc3-3.0rc1-py3.5.egg", "has_sig": false, "md5_digest": "9c5761094c0254cd17c3280f1d857aca", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1046757, "upload_time": "2016-09-06T20:24:52", "url": "https://files.pythonhosted.org/packages/b0/77/8a62a6de8df227533f6d34df9a7731e5609b9a128138676a838b950582be/pymc3-3.0rc1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "90cedc864fa2e06c46eca9c18a67f9c6", "sha256": "146e9b975db3cd5be60cdb28c58028e709593e1091e9959abedc0cc4842b18b6" }, "downloads": -1, "filename": "pymc3-3.0rc1.tar.gz", "has_sig": false, "md5_digest": "90cedc864fa2e06c46eca9c18a67f9c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 711592, "upload_time": "2016-09-06T20:23:18", "url": "https://files.pythonhosted.org/packages/14/ff/c85b54c48b5162503bbef1f1ad1beb456edc114b09ef74631be50701f97e/pymc3-3.0rc1.tar.gz" }, { "comment_text": "", "digests": { "md5": "88c55ab8be0f11069c6ab9520eeec619", "sha256": "d8037d030812b980f491b78af7b0a6798c6f6ee2cd7e7b39f9c0ff7fa3fc613e" }, "downloads": -1, "filename": "pymc3-3.0rc1.zip", "has_sig": false, "md5_digest": "88c55ab8be0f11069c6ab9520eeec619", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 771232, "upload_time": "2016-09-06T20:23:44", "url": "https://files.pythonhosted.org/packages/0c/ad/8ea828b72180eaa82eeba07801f06e1dae5754aaafde1827fe4d1c92f40a/pymc3-3.0rc1.zip" } ], "3.0rc2": [ { "comment_text": "", "digests": { "md5": "e221c4d7e243666a2f5e64deeea58dbb", "sha256": "81d857bde965e1493fd8a666ca8e207fe4dde1357fa81461413a54e1fd1b1138" }, "downloads": -1, "filename": "pymc3-3.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e221c4d7e243666a2f5e64deeea58dbb", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 776907, "upload_time": "2016-10-04T16:38:53", "url": "https://files.pythonhosted.org/packages/59/e9/3836cd521416d6846ae80f96f7d99e5798d9780155770951d77dd430cb21/pymc3-3.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64e92e11c52fd57d5d86f347d867ebc6", "sha256": "60f73e8a15fdc6bec668690ce96e33dde420c0fe2c517888ce7c09ef4fab158d" }, "downloads": -1, "filename": "pymc3-3.0rc2-py3.5.egg", "has_sig": false, "md5_digest": "64e92e11c52fd57d5d86f347d867ebc6", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 770839, "upload_time": "2016-10-04T16:39:05", "url": "https://files.pythonhosted.org/packages/8d/45/2bb45fbd40a937f6c670cf05e7c3fe89411155e4bb5b42cc4f063eb25987/pymc3-3.0rc2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "80105941758b9eba47c8a2774d5ee905", "sha256": "4d8f609ef808b0c8d73123eee585b2be9a8a8456f34d06fd288b5b5a237ae421" }, "downloads": -1, "filename": "pymc3-3.0rc2.tar.gz", "has_sig": false, "md5_digest": "80105941758b9eba47c8a2774d5ee905", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10393607, "upload_time": "2016-10-04T16:44:16", "url": "https://files.pythonhosted.org/packages/0d/34/c152691c4f3a0f41b4c8c666b69a9b4e4a154651d0061903b0e763cb0649/pymc3-3.0rc2.tar.gz" }, { "comment_text": "", "digests": { "md5": "a09f7e8aefdc6db7fed40c3cbd71924d", "sha256": "0b02fdbf8ced55d03cde8d47e37c91f3bcbaf8ca57144f0cb56e3e549036c867" }, "downloads": -1, "filename": "pymc3-3.0rc2.zip", "has_sig": false, "md5_digest": "a09f7e8aefdc6db7fed40c3cbd71924d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10463218, "upload_time": "2016-10-04T16:48:00", "url": "https://files.pythonhosted.org/packages/e5/a1/ec27dec9686555b7ceff61f92a25bab1600c72cb1c490f1dd237a6e4f9e7/pymc3-3.0rc2.zip" } ], "3.0rc4": [ { "comment_text": "", "digests": { "md5": "04cf60f70c8819f5c03239787766b131", "sha256": "5214ae1d723bcd83b618d90e51b66f842cc86939a7af1fc2baf20224fbcf6afb" }, "downloads": -1, "filename": "pymc3-3.0rc4-py3-none-any.whl", "has_sig": false, "md5_digest": "04cf60f70c8819f5c03239787766b131", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 788760, "upload_time": "2016-12-01T22:50:48", "url": "https://files.pythonhosted.org/packages/6b/c9/35c39e28354a06067e8b274a2b28f59e31296a5d44a4678558a61dd0fb69/pymc3-3.0rc4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7626aefa9b25a64783882f065b15fc33", "sha256": "b1d4fa2afebd9804569361420c991392cee5d26c780008ec0b8e7fc754551f47" }, "downloads": -1, "filename": "pymc3-3.0rc4.tar.gz", "has_sig": false, "md5_digest": "7626aefa9b25a64783882f065b15fc33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13023027, "upload_time": "2016-12-01T22:48:15", "url": "https://files.pythonhosted.org/packages/44/b5/a46dda33e92b377e7fcc76ccc7cf5a677e822b19d8f853347703c5b1bac3/pymc3-3.0rc4.tar.gz" } ], "3.0rc5": [ { "comment_text": "", "digests": { "md5": "43f50908831db91e882e78c8226bf672", "sha256": "f1b45837ef8e79217a6b3edc275a777837655c9da6e91708821fa97aec51d540" }, "downloads": -1, "filename": "pymc3-3.0rc5-py3-none-any.whl", "has_sig": false, "md5_digest": "43f50908831db91e882e78c8226bf672", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 174001, "upload_time": "2017-01-01T20:14:42", "url": "https://files.pythonhosted.org/packages/db/e6/8984a0bf997c2095aff0c0ee495a07e7406aab296dceeac8ede2bd3fbfb1/pymc3-3.0rc5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78f1d2d483ce4f21dc3056e5366fe4c1", "sha256": "3d4b6aa3c96cc677a7577f7c518b7ea5df12f186e389ba8b5c3cc728dd7a5a50" }, "downloads": -1, "filename": "pymc3-3.0rc5.tar.gz", "has_sig": false, "md5_digest": "78f1d2d483ce4f21dc3056e5366fe4c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 992511, "upload_time": "2017-01-01T20:14:28", "url": "https://files.pythonhosted.org/packages/3d/38/e3f2e2e1749e84972201b304c302c46664b19f89db85717d78a056ecad5e/pymc3-3.0rc5.tar.gz" } ], "3.0rc6": [ { "comment_text": "", "digests": { "md5": "6b5ac4d8be441b2899600ffb91d9bc61", "sha256": "6117fecee091a72c267abf0f3b28f870f0edfbb7cbafa318c8f3dd70e2906fcd" }, "downloads": -1, "filename": "pymc3-3.0rc6-py3-none-any.whl", "has_sig": false, "md5_digest": "6b5ac4d8be441b2899600ffb91d9bc61", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 173995, "upload_time": "2017-01-02T04:27:35", "url": "https://files.pythonhosted.org/packages/0b/4f/a2a4934a95fc78884b56ca507448aeb1b5344d078895a09ccfff31f11319/pymc3-3.0rc6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc3bb36fbbf787053cf99147164b7439", "sha256": "8df5a190218d3eea2655915847aad9c87ae9719cc507c5c3e24ec4973408051d" }, "downloads": -1, "filename": "pymc3-3.0rc6.tar.gz", "has_sig": false, "md5_digest": "fc3bb36fbbf787053cf99147164b7439", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 992525, "upload_time": "2017-01-02T04:27:23", "url": "https://files.pythonhosted.org/packages/d2/88/355f4bde0eb4eadedd3b58d512a0994e5abd3b76ac467e5f7f174e9b61f7/pymc3-3.0rc6.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "d12b5018909c82109fd2fbacc73b90f0", "sha256": "dc885bab37a434c09480cccf89e36089ebe68cbf528bc4078fd0c8bd39a2f98c" }, "downloads": -1, "filename": "pymc3-3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d12b5018909c82109fd2fbacc73b90f0", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1192764, "upload_time": "2017-06-25T15:29:42", "url": "https://files.pythonhosted.org/packages/51/ee/69e4c47f1fb32992f37f45e2549e9bd80bd317a293783d1d7cd9833faff3/pymc3-3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf7d94f3081fa56db79604f66e578a93", "sha256": "218e412408cd5f0bc0e6984404bcaadd32f80c4ef523ac8718c1f0c3fd8c4e28" }, "downloads": -1, "filename": "pymc3-3.1.tar.gz", "has_sig": false, "md5_digest": "bf7d94f3081fa56db79604f66e578a93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34553828, "upload_time": "2017-06-25T15:29:05", "url": "https://files.pythonhosted.org/packages/fa/43/44bcff3c04196b19523bd56554471d3d44be073cf9b12241534f908fe0b6/pymc3-3.1.tar.gz" } ], "3.1rc1": [ { "comment_text": "", "digests": { "md5": "7c2fc8ecea7192b51dc2fe0f582fd39b", "sha256": "ede067668aacf121d3326a2a035399105bba5c4c5231ea8d2129661c51d62428" }, "downloads": -1, "filename": "pymc3-3.1rc1.tar.gz", "has_sig": false, "md5_digest": "7c2fc8ecea7192b51dc2fe0f582fd39b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1042028, "upload_time": "2017-03-13T22:43:42", "url": "https://files.pythonhosted.org/packages/dd/6e/bafa41c802b6a992e93fb01c438984376c2d0bbc194398b7f3fa2bebcf3a/pymc3-3.1rc1.tar.gz" } ], "3.1rc2": [ { "comment_text": "", "digests": { "md5": "0ff04366bd07cda1b7b3c932f2b07a48", "sha256": "09226a21f57241a770c653ee4ec4a9435c20d3c74ab67e339d2f6b04a742d685" }, "downloads": -1, "filename": "pymc3-3.1rc2-py3-none-any.whl", "has_sig": false, "md5_digest": "0ff04366bd07cda1b7b3c932f2b07a48", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 685169, "upload_time": "2017-03-16T18:08:51", "url": "https://files.pythonhosted.org/packages/90/9f/0d1ed6a939922296c2752eb42ad98231303a05a974e452760c09a75e22d4/pymc3-3.1rc2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc887cdc9989a0f85b1cd1c72a66d423", "sha256": "3053ea8c017eed8dd1ee6adee10f5324e98ae9cb46c6c52969e0b45d27ab2474" }, "downloads": -1, "filename": "pymc3-3.1rc2.tar.gz", "has_sig": false, "md5_digest": "dc887cdc9989a0f85b1cd1c72a66d423", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22891305, "upload_time": "2017-03-16T18:10:59", "url": "https://files.pythonhosted.org/packages/a6/cb/de23959c31f25d0e9ae2543de23ae07f240fed6719ee0ef32d9ae1b6d900/pymc3-3.1rc2.tar.gz" } ], "3.1rc3": [ { "comment_text": "", "digests": { "md5": "46b65be3c14346c19898b68c3f574bac", "sha256": "64560594017a3516bccf3ca028e5f0e8a89dbc5f267d95bf1289b1941cb6a5d9" }, "downloads": -1, "filename": "pymc3-3.1rc3-py3-none-any.whl", "has_sig": false, "md5_digest": "46b65be3c14346c19898b68c3f574bac", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 693889, "upload_time": "2017-03-30T12:41:29", "url": "https://files.pythonhosted.org/packages/13/77/527f4ebfe6a28d957e41cb879413022d457856382fff597dc717dc0e2601/pymc3-3.1rc3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c42c9c09e772b288340d1e6a93fda952", "sha256": "8751b2937c84a0f4801841f88b3cee26dc48d04b2ddc6d94e99544cb04ccff57" }, "downloads": -1, "filename": "pymc3-3.1rc3.tar.gz", "has_sig": false, "md5_digest": "c42c9c09e772b288340d1e6a93fda952", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22910164, "upload_time": "2017-03-30T12:40:10", "url": "https://files.pythonhosted.org/packages/d6/0f/50944c6a9f925ac2da42abeecf6d27c4d59ae0b64065481d1fc64b84ddc2/pymc3-3.1rc3.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "9f35f789fbd7a1330929e85cd783421a", "sha256": "b772e519a2b4c2ac6f8f2274968efb5da1c0a5a9083e5020b3f20257de39eb76" }, "downloads": -1, "filename": "pymc3-3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9f35f789fbd7a1330929e85cd783421a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1237065, "upload_time": "2017-10-10T21:00:30", "url": "https://files.pythonhosted.org/packages/5a/28/ec90d7b6028a31174d278b0342b9ab9fbbce364bd53e558c81ce839bebe8/pymc3-3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5db9b2e662c3ff399e5304c40142e3e4", "sha256": "6930f8302dfbd15d4d67cb7a51920a2d38f6b72721f5a3369b7ce9b3ef84ff42" }, "downloads": -1, "filename": "pymc3-3.2.tar.gz", "has_sig": false, "md5_digest": "5db9b2e662c3ff399e5304c40142e3e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41415872, "upload_time": "2017-10-10T19:09:32", "url": "https://files.pythonhosted.org/packages/54/aa/95073dd6c611fad98fa44aabe4b312bbd8910e5a01e265da46f58bf8d3ea/pymc3-3.2.tar.gz" } ], "3.2rc1": [ { "comment_text": "", "digests": { "md5": "7485969821341600c1619d835e584bff", "sha256": "7816fea7230343c39afa4d3c18c2ae4fd2adff043c0881300ee241f22d2479ab" }, "downloads": -1, "filename": "pymc3-3.2rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "7485969821341600c1619d835e584bff", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1236794, "upload_time": "2017-10-05T15:35:35", "url": "https://files.pythonhosted.org/packages/ee/8a/9d10957c3176097e7fd19141fa7a57e722aacdda64bf24f497cd91937ce0/pymc3-3.2rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a04d049c01ee743f45261fbd27d1474e", "sha256": "6e30578bbd52a44eeab20793835c12caed5bf270286b99095fdcbeba696d27e5" }, "downloads": -1, "filename": "pymc3-3.2rc1.tar.gz", "has_sig": false, "md5_digest": "a04d049c01ee743f45261fbd27d1474e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41416328, "upload_time": "2017-10-05T15:35:21", "url": "https://files.pythonhosted.org/packages/26/55/59e81a0999d0b3ae0d67d2f3c22e12fa2b5dafcf9c6c9c0778212b27bbe3/pymc3-3.2rc1.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "f64f35b1f7f2ab2cec3a117668e23669", "sha256": "03e821f01db93b49727e8b2d284f836d91d98ae49a012e227eeac3d41665cca6" }, "downloads": -1, "filename": "pymc3-3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f64f35b1f7f2ab2cec3a117668e23669", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1259437, "upload_time": "2018-01-26T21:04:07", "url": "https://files.pythonhosted.org/packages/17/82/223515789e63c31c2efb1230252a2ad3ce7714f88ccb91891038aeb36248/pymc3-3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0401b490dd7f44df7712f5c21a32b4b4", "sha256": "fd728c46cd998c4ecd46fd2c23f9b7884fff6872fca9ea26ed6ebc3337296be9" }, "downloads": -1, "filename": "pymc3-3.3.tar.gz", "has_sig": false, "md5_digest": "0401b490dd7f44df7712f5c21a32b4b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45784807, "upload_time": "2018-01-26T21:03:55", "url": "https://files.pythonhosted.org/packages/96/f0/8798e6f649bfac7bf6ae9df578bd48f393e2933e0036e4b69b2f31da42f2/pymc3-3.3.tar.gz" } ], "3.3rc1": [ { "comment_text": "", "digests": { "md5": "64cca81019dbbbbbc7d184849521a928", "sha256": "ed32f0ce124a28922e5153ac31c0f67bdff28c82c6e5b6147b80068a620e6bcf" }, "downloads": -1, "filename": "pymc3-3.3rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "64cca81019dbbbbbc7d184849521a928", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1258661, "upload_time": "2018-01-09T17:42:38", "url": "https://files.pythonhosted.org/packages/d5/ab/6d37d30eace89acac3c0a33f30c4f454dc4412192ca51359a2104870765b/pymc3-3.3rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ce7ff1621479d6be59efd64ea9df496", "sha256": "7f7b4fe528b415ce48939b8b03ab8e64775809026109e0b0b212154b2c09c585" }, "downloads": -1, "filename": "pymc3-3.3rc1.tar.gz", "has_sig": false, "md5_digest": "2ce7ff1621479d6be59efd64ea9df496", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45805393, "upload_time": "2018-01-09T17:43:10", "url": "https://files.pythonhosted.org/packages/5f/50/7af17b535351a6bfc1a9f1801b92feeb5040e1e9314f10365e078e132ec2/pymc3-3.3rc1.tar.gz" } ], "3.3rc2": [ { "comment_text": "", "digests": { "md5": "c5b7a23217fe02e8b943882afd9f2d32", "sha256": "0f042405dabb5eae2260755a8a84791462196ceea1ab52b8b497aaac1950d91f" }, "downloads": -1, "filename": "pymc3-3.3rc2-py3-none-any.whl", "has_sig": false, "md5_digest": "c5b7a23217fe02e8b943882afd9f2d32", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1259281, "upload_time": "2018-01-18T15:11:38", "url": "https://files.pythonhosted.org/packages/b9/fc/87e704ec211903eadb758b0b044c814eb018780a417bced6f09ab367b0fd/pymc3-3.3rc2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e1d482b38c0d85f5212f01fb783ed8e", "sha256": "de60d12e05334f6d73c7bb3cbb2b556046d096077faa1082f36f2507eec67f91" }, "downloads": -1, "filename": "pymc3-3.3rc2.tar.gz", "has_sig": false, "md5_digest": "8e1d482b38c0d85f5212f01fb783ed8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45784671, "upload_time": "2018-01-18T15:09:35", "url": "https://files.pythonhosted.org/packages/3e/81/8b75a70845ad2a81a9fb33a25d89536770f4e8e2f8d05f175ad909554438/pymc3-3.3rc2.tar.gz" } ], "3.4.1": [ { "comment_text": "", "digests": { "md5": "e1de9932ebfe5ea3970eef344ec15e95", "sha256": "589b76b6be2a7db959e0ce9380089b2e69875c6f1ffaad4172bdcd453500984b" }, "downloads": -1, "filename": "pymc3-3.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e1de9932ebfe5ea3970eef344ec15e95", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1288715, "upload_time": "2018-04-19T02:46:04", "url": "https://files.pythonhosted.org/packages/22/c5/86ecf9f57d5b418efc4377b710fd743761e7f8bf266a316d8baf2952def8/pymc3-3.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e4f28b4dddcaefc966e46d591dd7f0b0", "sha256": "b8fe2a1ca142674f1b5cbed05a0a54ce9dade5998370005ddcea349472e7fe2d" }, "downloads": -1, "filename": "pymc3-3.4.1.tar.gz", "has_sig": false, "md5_digest": "e4f28b4dddcaefc966e46d591dd7f0b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47538716, "upload_time": "2018-04-19T02:45:38", "url": "https://files.pythonhosted.org/packages/1d/63/37f6d7745cf468e13752c6a01c2ea2968b3e4c59fe8b125e0887755d8958/pymc3-3.4.1.tar.gz" } ], "3.4rc1": [ { "comment_text": "", "digests": { "md5": "9c93320dcc38ed9d62f7fbaa4d9af80f", "sha256": "ab187808aecdf63b1e7f8b5d24e3a67c4ad15df8453ad35f8e2b1f0d560355aa" }, "downloads": -1, "filename": "pymc3-3.4rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "9c93320dcc38ed9d62f7fbaa4d9af80f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1282641, "upload_time": "2018-04-09T14:01:45", "url": "https://files.pythonhosted.org/packages/67/23/77727d9c39119f6bda655da6a7a68076503a43b1dd62d795b9a9fadb2492/pymc3-3.4rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ba5cb8eb9acfdd7063c35f78bd7a45c", "sha256": "619db9f29b6c8b16754c46a45f03a57a7e08896b73a28eefcdab1384044de93a" }, "downloads": -1, "filename": "pymc3-3.4rc1.tar.gz", "has_sig": false, "md5_digest": "4ba5cb8eb9acfdd7063c35f78bd7a45c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47531694, "upload_time": "2018-04-09T14:01:23", "url": "https://files.pythonhosted.org/packages/7d/01/0d6c67beb14a8bd29ea96ca5f145c8f568e29b87a12aa3ec35a56892e692/pymc3-3.4rc1.tar.gz" } ], "3.4rc2": [ { "comment_text": "", "digests": { "md5": "ffb45296c54e2de7e92d3058220699f9", "sha256": "ee3c288b68f1ba116ed4451858a629b37f047de4addf24bf0b1ce90277dd2efe" }, "downloads": -1, "filename": "pymc3-3.4rc2-py3-none-any.whl", "has_sig": false, "md5_digest": "ffb45296c54e2de7e92d3058220699f9", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1288729, "upload_time": "2018-04-13T19:32:59", "url": "https://files.pythonhosted.org/packages/5c/77/98c84764c5ab225c83f809f802f2810cb2c7f4b1fc9ff06ac05582ddc4fc/pymc3-3.4rc2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9677f427f4238614e3bc352fc5883395", "sha256": "0c729175971ba3b0212937f48e30d174316c0e431fc7be9b627ae5fbada1025c" }, "downloads": -1, "filename": "pymc3-3.4rc2.tar.gz", "has_sig": false, "md5_digest": "9677f427f4238614e3bc352fc5883395", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47538997, "upload_time": "2018-04-14T20:58:26", "url": "https://files.pythonhosted.org/packages/a9/96/2eb5736ed8ed50a08f1f4c01327ac8ba9397530ff7d7b10d62efa829b7bd/pymc3-3.4rc2.tar.gz" } ], "3.5": [ { "comment_text": "", "digests": { "md5": "11ac3c826d2dcfc239cd7899b9b386f3", "sha256": "49639eb62e14f7735ecbb03fa79f1c5f59f2e971c8ce0168b86ed1929e2c14ee" }, "downloads": -1, "filename": "pymc3-3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "11ac3c826d2dcfc239cd7899b9b386f3", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1294234, "upload_time": "2018-07-21T20:52:19", "url": "https://files.pythonhosted.org/packages/69/a9/f70526eacd82ff917c00dd2d979f6e240ad8b31ff18f11205e04f6c8074c/pymc3-3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5fc7f162fc7883252639fc1afeee342d", "sha256": "6088e683c6d730bb21350a0f54ee083fa5a28e4d5ef52d57878141c9c20f21ee" }, "downloads": -1, "filename": "pymc3-3.5.tar.gz", "has_sig": false, "md5_digest": "5fc7f162fc7883252639fc1afeee342d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31996796, "upload_time": "2018-07-21T20:47:33", "url": "https://files.pythonhosted.org/packages/da/56/c9c0c9b28c6573320367f31caaadf3f3ae456685d6127c0c6644f49f7863/pymc3-3.5.tar.gz" } ], "3.5rc1": [ { "comment_text": "", "digests": { "md5": "32802a780d8b31888f1cf5f610654c32", "sha256": "4892d1e007f474d12ec502134754335f4ba06d3760b80ee018b655c5a4445324" }, "downloads": -1, "filename": "pymc3-3.5rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "32802a780d8b31888f1cf5f610654c32", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 1294160, "upload_time": "2018-07-15T02:12:23", "url": "https://files.pythonhosted.org/packages/c4/28/87bdda9d73b3c7bb298f095340e7b25e31def6c11ac14b25792bfaf33819/pymc3-3.5rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "187cff2b04aec4636312ff1d9771c2d4", "sha256": "723dddddf0a2f16f800380c70a7e6c4db820b2a57869fc69d4d886fe602c0ebe" }, "downloads": -1, "filename": "pymc3-3.5rc1.tar.gz", "has_sig": false, "md5_digest": "187cff2b04aec4636312ff1d9771c2d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31534893, "upload_time": "2018-07-15T02:12:00", "url": "https://files.pythonhosted.org/packages/d4/59/d2f3eb1a74276c36e007de13fdd6a768deaf9085308bae7f2be58af6db99/pymc3-3.5rc1.tar.gz" } ], "3.6": [ { "comment_text": "", "digests": { "md5": "806712c59858fd080dddd556c536bc07", "sha256": "c00c0778d2451a348a9508f8b956fe280a0f9affd3f85140ac3948bc2902f5e9" }, "downloads": -1, "filename": "pymc3-3.6.tar.gz", "has_sig": false, "md5_digest": "806712c59858fd080dddd556c536bc07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30684384, "upload_time": "2018-12-20T19:42:50", "url": "https://files.pythonhosted.org/packages/51/ab/27936b914d4c1bc488c6f67abb94a851946ec3eae85b92f9039b35009a18/pymc3-3.6.tar.gz" } ], "3.7": [ { "comment_text": "", "digests": { "md5": "bd5a8bf01d9549dec1a72952c447314e", "sha256": "5d34a0f8047852a7fa2cf54a5a5089512a5e7243d2be48c8705cc1a813b7d785" }, "downloads": -1, "filename": "pymc3-3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "bd5a8bf01d9549dec1a72952c447314e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 856929, "upload_time": "2019-06-02T05:32:16", "url": "https://files.pythonhosted.org/packages/42/c2/86e8be42b99d64932fa12611b502882a5f4d834b6d1d126bf3f956ad6428/pymc3-3.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec9fe250b51553beb3a4790259f98f58", "sha256": "79cd7cdc0952bc59a435a3fb20704505a749e226199b9229f539da0d9f505646" }, "downloads": -1, "filename": "pymc3-3.7.tar.gz", "has_sig": false, "md5_digest": "ec9fe250b51553beb3a4790259f98f58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30780326, "upload_time": "2019-05-29T14:37:12", "url": "https://files.pythonhosted.org/packages/af/a3/4e759f5707902a2ab03d01be4589bba029d291dcc9bda9043db8bd180eaf/pymc3-3.7.tar.gz" } ], "3.7rc1": [ { "comment_text": "", "digests": { "md5": "29705da5df82f90c9f236f5ae2072c22", "sha256": "00bd4be402610046dcb78038b131accd29c334ecd069d3717f4f7360a158b1a0" }, "downloads": -1, "filename": "pymc3-3.7rc1.tar.gz", "has_sig": false, "md5_digest": "29705da5df82f90c9f236f5ae2072c22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30779459, "upload_time": "2019-05-22T15:57:29", "url": "https://files.pythonhosted.org/packages/bd/c5/8891feb5442f37828629ce3b13c8e1d0d9154c215fb6b4830a8780c5f00f/pymc3-3.7rc1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bd5a8bf01d9549dec1a72952c447314e", "sha256": "5d34a0f8047852a7fa2cf54a5a5089512a5e7243d2be48c8705cc1a813b7d785" }, "downloads": -1, "filename": "pymc3-3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "bd5a8bf01d9549dec1a72952c447314e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 856929, "upload_time": "2019-06-02T05:32:16", "url": "https://files.pythonhosted.org/packages/42/c2/86e8be42b99d64932fa12611b502882a5f4d834b6d1d126bf3f956ad6428/pymc3-3.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec9fe250b51553beb3a4790259f98f58", "sha256": "79cd7cdc0952bc59a435a3fb20704505a749e226199b9229f539da0d9f505646" }, "downloads": -1, "filename": "pymc3-3.7.tar.gz", "has_sig": false, "md5_digest": "ec9fe250b51553beb3a4790259f98f58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30780326, "upload_time": "2019-05-29T14:37:12", "url": "https://files.pythonhosted.org/packages/af/a3/4e759f5707902a2ab03d01be4589bba029d291dcc9bda9043db8bd180eaf/pymc3-3.7.tar.gz" } ] }