pymc

Bayesian Modeling and Probabilistic Programming in Python

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

Science Score: 77.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 5 DOI reference(s) in README
  • Academic publication links
    Links to: scholar.google, zenodo.org
  • Committers with academic emails
    41 of 512 committers (8.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.8%) to scientific vocabulary

Keywords

bayesian-inference mcmc probabilistic-programming pytensor python statistical-analysis variational-inference

Keywords from Contributors

optimizing-compiler closember tensors flexible alignment automatic-differentiation symbolic-computation term-rewriting-system theano transpiler
Last synced: 4 months ago · JSON representation ·

Repository

Bayesian Modeling and Probabilistic Programming in Python

Basic Info
  • Host: GitHub
  • Owner: pymc-devs
  • License: other
  • Language: Python
  • Default Branch: main
  • Homepage: https://www.pymc.io
  • Size: 516 MB
Statistics
  • Stars: 9,198
  • Watchers: 223
  • Forks: 2,122
  • Open Issues: 400
  • Releases: 105
Topics
bayesian-inference mcmc probabilistic-programming pytensor python statistical-analysis variational-inference
Created over 16 years ago · Last pushed 4 months ago
Metadata Files
Readme Contributing License Code of conduct Citation Governance

README.rst

.. image:: https://cdn.rawgit.com/pymc-devs/pymc/main/docs/logos/svg/PyMC_banner.svg
    :height: 100px
    :alt: PyMC logo
    :align: center

|Build Status| |Coverage| |NumFOCUS_badge| |Binder| |Dockerhub| |DOIzenodo| |Conda Downloads|

PyMC (formerly PyMC3) is a Python package for Bayesian statistical modeling
focusing on advanced Markov chain Monte Carlo (MCMC) and variational inference (VI)
algorithms. Its flexibility and extensibility make it applicable to a
large suite of problems.

Check out the `PyMC overview `__,  or
one of `the many examples `__!
For questions on PyMC, head on over to our `PyMC Discourse `__ forum.

Features
========

-  Intuitive model specification syntax, for example, ``x ~ N(0,1)``
   translates to ``x = Normal('x',0,1)``
-  **Powerful sampling algorithms**, such as the `No U-Turn
   Sampler `__, allow complex models
   with thousands of parameters with little specialized knowledge of
   fitting algorithms.
-  **Variational inference**: `ADVI `__
   for fast approximate posterior estimation as well as mini-batch ADVI
   for large data sets.
-  Relies on `PyTensor `__ which provides:
    *  Computation optimization and dynamic C or JAX compilation
    *  NumPy broadcasting and advanced indexing
    *  Linear algebra operators
    *  Simple extensibility
-  Transparent support for missing value imputation


Linear Regression Example
==========================


Plant growth can be influenced by multiple factors, and understanding these relationships is crucial for optimizing agricultural practices.

Imagine we conduct an experiment to predict the growth of a plant based on different environmental variables.

.. code-block:: python

   import pymc as pm

   # Taking draws from a normal distribution
   seed = 42
   x_dist = pm.Normal.dist(shape=(100, 3))
   x_data = pm.draw(x_dist, random_seed=seed)

   # Independent Variables:
   # Sunlight Hours: Number of hours the plant is exposed to sunlight daily.
   # Water Amount: Daily water amount given to the plant (in milliliters).
   # Soil Nitrogen Content: Percentage of nitrogen content in the soil.


   # Dependent Variable:
   # Plant Growth (y): Measured as the increase in plant height (in centimeters) over a certain period.


   # Define coordinate values for all dimensions of the data
   coords={
    "trial": range(100),
    "features": ["sunlight hours", "water amount", "soil nitrogen"],
   }

   # Define generative model
   with pm.Model(coords=coords) as generative_model:
      x = pm.Data("x", x_data, dims=["trial", "features"])

      # Model parameters
      betas = pm.Normal("betas", dims="features")
      sigma = pm.HalfNormal("sigma")

      # Linear model
      mu = x @ betas

      # Likelihood
      # Assuming we measure deviation of each plant from baseline
      plant_growth = pm.Normal("plant growth", mu, sigma, dims="trial")


   # Generating data from model by fixing parameters
   fixed_parameters = {
    "betas": [5, 20, 2],
    "sigma": 0.5,
   }
   with pm.do(generative_model, fixed_parameters) as synthetic_model:
      idata = pm.sample_prior_predictive(random_seed=seed) # Sample from prior predictive distribution.
      synthetic_y = idata.prior["plant growth"].sel(draw=0, chain=0)


   # Infer parameters conditioned on observed data
   with pm.observe(generative_model, {"plant growth": synthetic_y}) as inference_model:
      idata = pm.sample(random_seed=seed)

      summary = pm.stats.summary(idata, var_names=["betas", "sigma"])
      print(summary)


From the summary, we can see that the mean of the inferred parameters are very close to the fixed parameters

=====================  ======  =====  ========  =========  ===========  =========  ==========  ==========  =======
Params                  mean     sd    hdi_3%    hdi_97%    mcse_mean    mcse_sd    ess_bulk    ess_tail    r_hat
=====================  ======  =====  ========  =========  ===========  =========  ==========  ==========  =======
betas[sunlight hours]   4.972  0.054     4.866      5.066        0.001      0.001        3003        1257        1
betas[water amount]    19.963  0.051    19.872     20.062        0.001      0.001        3112        1658        1
betas[soil nitrogen]    1.994  0.055     1.899      2.107        0.001      0.001        3221        1559        1
sigma                   0.511  0.037     0.438      0.575        0.001      0            2945        1522        1
=====================  ======  =====  ========  =========  ===========  =========  ==========  ==========  =======

.. code-block:: python

   # Simulate new data conditioned on inferred parameters
   new_x_data = pm.draw(
      pm.Normal.dist(shape=(3, 3)),
      random_seed=seed,
   )
   new_coords = coords | {"trial": [0, 1, 2]}

   with inference_model:
      pm.set_data({"x": new_x_data}, coords=new_coords)
      pm.sample_posterior_predictive(
         idata,
         predictions=True,
         extend_inferencedata=True,
         random_seed=seed,
      )

   pm.stats.summary(idata.predictions, kind="stats")

The new data conditioned on inferred parameters would look like:

================ ======== ======= ======== =========
Output            mean     sd      hdi_3%   hdi_97%
================ ======== ======= ======== =========
plant growth[0]   14.229   0.515   13.325   15.272
plant growth[1]   24.418   0.511   23.428   25.326
plant growth[2]   -6.747   0.511   -7.740   -5.797
================ ======== ======= ======== =========

.. code-block:: python

   # Simulate new data, under a scenario where the first beta is zero
   with pm.do(
    inference_model,
    {inference_model["betas"]: inference_model["betas"] * [0, 1, 1]},
   ) as plant_growth_model:
      new_predictions = pm.sample_posterior_predictive(
         idata,
         predictions=True,
         random_seed=seed,
      )

   pm.stats.summary(new_predictions, kind="stats")

The new data, under the above scenario would look like:

================ ======== ======= ======== =========
Output            mean     sd      hdi_3%   hdi_97%
================ ======== ======= ======== =========
plant growth[0]   12.149   0.515   11.193   13.135
plant growth[1]   29.809   0.508   28.832   30.717
plant growth[2]   -0.131   0.507   -1.121    0.791
================ ======== ======= ======== =========

Getting started
===============

If you already know about Bayesian statistics:
----------------------------------------------

-  `API quickstart guide `__
-  The `PyMC tutorial `__
-  `PyMC examples `__ and the `API reference `__

Learn Bayesian statistics with a book together with PyMC
--------------------------------------------------------

-  `Bayesian Analysis with Python  `__ (third edition) by Osvaldo Martin: Great introductory book.
-  `Probabilistic Programming and Bayesian Methods for Hackers `__: Fantastic book with many applied code examples.
-  `PyMC port of the book "Doing Bayesian Data Analysis" by John Kruschke `__ as well as the `first edition `__.
-  `PyMC port of the book "Statistical Rethinking A Bayesian Course with Examples in R and Stan" by Richard McElreath `__
-  `PyMC port of the book "Bayesian Cognitive Modeling" by Michael Lee and EJ Wagenmakers `__: Focused on using Bayesian statistics in cognitive modeling.

Audio & Video
-------------

- Here is a `YouTube playlist `__ gathering several talks on PyMC.
- You can also find all the talks given at **PyMCon 2020** `here `__.
- The `"Learning Bayesian Statistics" podcast `__ helps you discover and stay up-to-date with the vast Bayesian community. Bonus: it's hosted by Alex Andorra, one of the PyMC core devs!

Installation
============

To install PyMC on your system, follow the instructions on the `installation guide `__.

Citing PyMC
===========
Please choose from the following:

- |DOIpaper| *PyMC: A Modern and Comprehensive Probabilistic Programming Framework in Python*, Abril-Pla O, Andreani V, Carroll C, Dong L, Fonnesbeck CJ, Kochurov M, Kumar R, Lao J, Luhmann CC, Martin OA, Osthege M, Vieira R, Wiecki T, Zinkov R. (2023)
- |DOIzenodo| A DOI for all versions.
- DOIs for specific versions are shown on Zenodo and under `Releases `_

.. |DOIpaper| image:: https://img.shields.io/badge/DOI-10.7717%2Fpeerj--cs.1516-blue.svg
     :target: https://doi.org/10.7717/peerj-cs.1516
.. |DOIzenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4603970.svg
   :target: https://doi.org/10.5281/zenodo.4603970

Contact
=======

We are using `discourse.pymc.io `__ as our main communication channel.

To ask a question regarding modeling or usage of PyMC we encourage posting to our Discourse forum under the `“Questions” Category `__. You can also suggest feature in the `“Development” Category `__.

You can also follow us on these social media platforms for updates and other announcements:

- `LinkedIn @pymc `__
- `YouTube @PyMCDevelopers `__
- `X @pymc_devs `__
- `Mastodon @pymc@bayes.club `__

To report an issue with PyMC please use the `issue tracker `__.

Finally, if you need to get in touch for non-technical information about the project, `send us an e-mail `__.

License
=======

`Apache License, Version
2.0 `__


Software using PyMC
===================

General purpose
---------------

- `Bambi `__: BAyesian Model-Building Interface (BAMBI) in Python.
- `calibr8 `__: A toolbox for constructing detailed observation models to be used as likelihoods in PyMC.
- `gumbi `__: A high-level interface for building GP models.
- `SunODE `__: Fast ODE solver, much faster than the one that comes with PyMC.
- `pymc-learn `__: Custom PyMC models built on top of pymc3_models/scikit-learn API

Domain specific
---------------

- `Exoplanet `__: a toolkit for modeling of transit and/or radial velocity observations of exoplanets and other astronomical time series.
- `beat `__: Bayesian Earthquake Analysis Tool.
- `CausalPy `__: A package focussing on causal inference in quasi-experimental settings.
- `PyMC-Marketing `__: Bayesian marketing toolbox for marketing mix modeling, customer lifetime value, and more.

Please contact us if your software is not listed here.

Papers citing PyMC
==================

See Google Scholar `here `__ and `here `__ for a continuously updated list.

Contributors
============

See the `GitHub contributor
page `__. Also read our `Code of Conduct `__ guidelines for a better contributing experience.

Support
=======

PyMC is a non-profit project under NumFOCUS umbrella. If you want to support PyMC financially, you can donate `here `__.

Professional Consulting Support
===============================

You can get professional consulting support from `PyMC Labs `__.

Sponsors
========

|NumFOCUS|

|PyMCLabs|

|Mistplay|

|ODSC|

Thanks to our contributors
==========================

|contributors|

.. |Binder| image:: https://mybinder.org/badge_logo.svg
   :target: https://mybinder.org/v2/gh/pymc-devs/pymc/main?filepath=%2Fdocs%2Fsource%2Fnotebooks
.. |Build Status| image:: https://github.com/pymc-devs/pymc/workflows/tests/badge.svg
   :target: https://github.com/pymc-devs/pymc/actions?query=workflow%3Atests+branch%3Amain
.. |Coverage| image:: https://codecov.io/gh/pymc-devs/pymc/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/pymc-devs/pymc
.. |Dockerhub| image:: https://img.shields.io/docker/automated/pymc/pymc.svg
   :target: https://hub.docker.com/r/pymc/pymc
.. |NumFOCUS_badge| image:: https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A
   :target: http://www.numfocus.org/
.. |NumFOCUS| image:: https://github.com/pymc-devs/brand/blob/main/sponsors/sponsor_logos/sponsor_numfocus.png?raw=true
   :target: http://www.numfocus.org/
.. |PyMCLabs| image:: https://github.com/pymc-devs/brand/blob/main/sponsors/sponsor_logos/sponsor_pymc_labs.png?raw=true
   :target: https://pymc-labs.io
.. |Mistplay| image:: https://github.com/pymc-devs/brand/blob/main/sponsors/sponsor_logos/sponsor_mistplay.png?raw=true
   :target: https://www.mistplay.com/
.. |ODSC| image:: https://github.com/pymc-devs/brand/blob/main/sponsors/sponsor_logos/odsc/sponsor_odsc.png?raw=true
   :target: https://odsc.com/california/?utm_source=pymc&utm_medium=referral
.. |contributors| image:: https://contrib.rocks/image?repo=pymc-devs/pymc
   :target: https://github.com/pymc-devs/pymc/graphs/contributors
.. |Conda Downloads| image:: https://anaconda.org/conda-forge/pymc/badges/downloads.svg
   :target: https://anaconda.org/conda-forge/pymc

Owner

  • Name: PyMC
  • Login: pymc-devs
  • Kind: organization

Citation (CITATION.cff)

cff-version: 1.2.0
message: If you use this software, please cite it using the metadata from this file.
title: PyMC
authors:
  - name: PyMC-Devs
repository-code: "https://github.com/pymc-devs/pymc"
url: "https://www.pymc.io"
abstract: Bayesian Modeling and Probabilistic Programming in Python
license: Apache-2.0

preferred-citation:
  type: article
  title: "PyMC: a modern, and comprehensive probabilistic programming framework in Python"
  journal: PeerJ Comput. Sci.
  database: peerj.com
  issn: 2376-5992
  languages:
    - en
  pages: e1516
  volume: 9
  url: "https://peerj.com/articles/cs-1516"
  date-published: 2023-09-01
  doi: 10.7717/peerj-cs.1516
  authors:
    - family-names: Abril-Pla
      given-names: Oriol
    - family-names: Andreani
      given-names: Virgile
    - family-names: Carroll
      given-names: Colin
    - family-names: Dong
      given-names: Larry
    - family-names: Fonnesbeck
      given-names: Christopher J.
    - family-names: Kochurov
      given-names: Maxim
    - family-names: Kumar
      given-names: Ravin
    - family-names: Lao
      given-names: Junpeng
    - family-names: Luhmann
      given-names: Christian C.
    - family-names: Martin
      given-names: Osvaldo A.
    - family-names: Osthege
      given-names: Michael
    - family-names: Vieira
      given-names: Ricardo
    - family-names: Wiecki
      given-names: Thomas
    - family-names: Zinkov
      given-names: Robert

Committers

Last synced: 8 months ago

All Time
  • Total Commits: 9,301
  • Total Committers: 512
  • Avg Commits per committer: 18.166
  • Development Distribution Score (DDS): 0.91
Past Year
  • Commits: 387
  • Committers: 52
  • Avg Commits per committer: 7.442
  • Development Distribution Score (DDS): 0.674
Top Committers
Name Email Commits
Ricardo Vieira r****4@g****m 836
anand.prabhakar.patil a****l@1****4 803
Chris Fonnesbeck c****k@v****u 688
John Salvatier j****r@g****m 642
Thomas Wiecki t****i@g****m 569
Christopher Fonnesbeck f****k@g****m 360
Maxim Kochurov m****v@g****m 344
david.huard d****d@1****4 344
Michael Osthege m****e@o****m 302
Brandon T. Willard b****d 273
Anand Patil a****l@g****m 246
Bill Engels w****s@g****m 237
fonnesbeck f****k@1****4 236
Osvaldo Martin a****a@g****m 215
Colin C****l 200
Adrian Seyboldt a****t@g****m 157
Junpeng Lao j****o@u****h 148
Virgile Andreani a****a@u****r 108
Luciano Paz l****o@g****m 104
Robert P. Goldman r****n@g****g 92
AustinRochford a****d@m****m 86
Kyle Meyer k****e@k****m 80
Oriol Abril-Pla o****a@g****m 75
Marco Gorelli m****i@g****m 67
dependabot[bot] 4****] 59
Junpeng Lao j****o@g****m 59
Ravin Kumar r****e@g****m 57
AlexAndorra a****e@g****m 56
Peadar Coyle p****e@g****m 51
Chris Fonnesbeck f****k@s****z 48
and 482 more...

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 499
  • Total pull requests: 1,164
  • Average time to close issues: 6 months
  • Average time to close pull requests: 22 days
  • Total issue authors: 192
  • Total pull request authors: 163
  • Average comments per issue: 3.26
  • Average comments per pull request: 2.94
  • Merged pull requests: 772
  • Bot issues: 0
  • Bot pull requests: 222
Past Year
  • Issues: 130
  • Pull requests: 421
  • Average time to close issues: 24 days
  • Average time to close pull requests: 10 days
  • Issue authors: 62
  • Pull request authors: 59
  • Average comments per issue: 1.04
  • Average comments per pull request: 2.04
  • Merged pull requests: 233
  • Bot issues: 0
  • Bot pull requests: 102
Top Authors
Issue Authors
  • ricardoV94 (128)
  • jessegrabowski (25)
  • ferrine (17)
  • lucianopaz (16)
  • fonnesbeck (14)
  • wd60622 (12)
  • michaelosthege (11)
  • twiecki (11)
  • velochy (9)
  • reshamas (8)
  • williambdean (7)
  • tomicapretto (6)
  • tvwenger (6)
  • larryshamalama (6)
  • maresb (5)
Pull Request Authors
  • ricardoV94 (230)
  • dependabot[bot] (139)
  • pre-commit-ci[bot] (83)
  • Armavica (44)
  • williambdean (29)
  • fonnesbeck (28)
  • lucianopaz (27)
  • maresb (24)
  • aloctavodia (24)
  • twiecki (21)
  • OriolAbril (20)
  • zaxtax (18)
  • jessegrabowski (18)
  • juanitorduz (18)
  • aerubanov (18)
Top Labels
Issue Labels
bug (193) docs (69) feature request (56) beginner friendly (50) enhancements (43) help wanted (37) maintenance (29) request discussion (20) logprob-related (17) pytensor (16) jax (15) hackathon (14) logprob (14) GP (13) installation (12) samplers (12) needs info (11) trace-backend (11) tests (9) pytensor-related (6) v4 (6) Github CI/CD (5) macOS (5) model (5) VI (4) v3 (4) numba (3) question (3) SMC (3) dependencies (3)
Pull Request Labels
no releasenotes (323) maintenance (205) Github CI/CD (136) bug (127) enhancements (126) docs (106) major (67) dependencies (50) tests (48) pre-commit (45) samplers (42) jax (42) logprob (41) pytensor (37) GP (25) logprob-related (24) release (18) request discussion (14) model (13) trace-backend (13) VI (10) SMC (9) pytensor-related (8) feature request (6) fgraph (4) hackathon (4) model transform (4) don't merge (3) imputation (2) beginner friendly (2)

Packages

  • Total packages: 7
  • Total downloads:
    • pypi 647,000 last-month
  • Total docker downloads: 1,477
  • Total dependent packages: 97
    (may contain duplicates)
  • Total dependent repositories: 965
    (may contain duplicates)
  • Total versions: 256
  • Total maintainers: 4
pypi.org: pymc

Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor

  • Versions: 88
  • Dependent Packages: 92
  • Dependent Repositories: 928
  • Downloads: 646,938 Last month
  • Docker Downloads: 1,477
Rankings
Dependent packages count: 0.3%
Stargazers count: 0.3%
Forks count: 0.4%
Dependent repos count: 0.4%
Downloads: 0.6%
Average: 0.7%
Docker downloads count: 2.3%
Last synced: 4 months ago
proxy.golang.org: github.com/pymc-devs/pymc
  • Versions: 83
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Forks count: 0.6%
Stargazers count: 0.8%
Average: 3.9%
Dependent repos count: 4.7%
Dependent packages count: 9.6%
Last synced: 4 months ago
pypi.org: pymc-nightly

Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Aesara

  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 48 Last month
Rankings
Stargazers count: 0.3%
Forks count: 0.4%
Average: 9.7%
Dependent packages count: 10.1%
Downloads: 15.9%
Dependent repos count: 21.6%
Last synced: 4 months ago
conda-forge.org: pymc-base
  • Versions: 14
  • Dependent Packages: 2
  • Dependent Repositories: 4
Rankings
Forks count: 3.1%
Stargazers count: 3.7%
Average: 10.6%
Dependent repos count: 16.2%
Dependent packages count: 19.6%
Last synced: 4 months ago
conda-forge.org: pymc

PyMC is a python module that implements Bayesian statistical models and fitting algorithms, including Markov chain Monte Carlo. Its flexibility and extensibility make it applicable to a large suite of problems. Along with core sampling functionality, PyMC includes methods for summarizing output, plotting, goodness-of-fit and convergence diagnostics.

  • Versions: 23
  • Dependent Packages: 1
  • Dependent Repositories: 15
Rankings
Forks count: 3.1%
Stargazers count: 3.7%
Dependent repos count: 9.2%
Average: 11.2%
Dependent packages count: 29.0%
Last synced: 4 months ago
anaconda.org: pymc

PyMC is a python module that implements Bayesian statistical models and fitting algorithms, including Markov chain Monte Carlo. Its flexibility and extensibility make it applicable to a large suite of problems. Along with core sampling functionality, PyMC includes methods for summarizing output, plotting, goodness-of-fit and convergence diagnostics.

  • Versions: 5
  • Dependent Packages: 2
  • Dependent Repositories: 15
Rankings
Forks count: 7.9%
Stargazers count: 9.2%
Average: 18.1%
Dependent packages count: 20.4%
Dependent repos count: 34.7%
Last synced: 4 months ago
pypi.org: micropymc

Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Aesara

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 14 Last month
Rankings
Stargazers count: 0.3%
Forks count: 0.4%
Dependent packages count: 10.0%
Average: 18.7%
Dependent repos count: 21.7%
Downloads: 61.1%
Maintainers (1)
Last synced: 4 months ago

Dependencies

requirements-dev.txt pypi
  • aeppl ==0.0.31
  • aesara ==2.7.4
  • arviz >=0.12.0
  • cachetools >=4.2.1
  • cloudpickle *
  • fastprogress >=0.2.0
  • h5py >=2.7
  • ipython >=7.16
  • jupyter-sphinx *
  • myst-nb *
  • numpy >=1.15.0
  • numpydoc *
  • pandas >=0.24.0
  • polyagamma *
  • pre-commit >=2.8.0
  • pydata-sphinx-theme *
  • pytest >=3.0
  • pytest-cov >=2.5
  • scipy >=1.4.1
  • sphinx >=1.5
  • sphinx-copybutton *
  • sphinx-design *
  • sphinx-notfound-page *
  • sphinx-remove-toctrees *
  • sphinxext-rediraffe *
  • typing-extensions >=3.7.4
  • watermark *
requirements.txt pypi
  • aeppl ==0.0.31
  • aesara ==2.7.4
  • arviz >=0.12.0
  • cachetools >=4.2.1
  • cloudpickle *
  • fastprogress >=0.2.0
  • numpy >=1.15.0
  • pandas >=0.24.0
  • scipy >=1.4.1
  • typing-extensions >=3.7.4
.github/workflows/autoupdate-pre-commit-config.yml actions
  • actions/cache v3 composite
  • actions/setup-python v4 composite
  • technote-space/create-pr-action v2 composite
.github/workflows/dispatched_pre-commit.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/docker-image.yml actions
  • actions/checkout v3 composite
  • docker/build-push-action v3 composite
  • docker/login-action v2 composite
  • docker/metadata-action v4 composite
.github/workflows/pre-commit.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
  • conda-incubator/setup-miniconda v2 composite
  • pre-commit/action v3.0.0 composite
.github/workflows/release.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/slash_dispatch.yml actions
  • peter-evans/slash-command-dispatch v3 composite
.github/workflows/tests.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • codecov/codecov-action v3 composite
  • conda-incubator/setup-miniconda v2 composite
scripts/Dockerfile docker
  • jupyter/base-notebook python-3.9.12 build
.github/workflows/devcontainer-docker-image.yml actions
  • actions/checkout 2541b1294d2704b0964813337f33b291d3f8596b composite
  • docker/build-push-action 3b5e8027fcad23fda98b2e3ac259d8d67585f671 composite
  • docker/login-action 49ed152c8eca782a232dede0303416e8f356c37b composite
  • docker/metadata-action 69f6fc9d46f2f8bf0d5491e4aabe0bb8c6a4678a composite
  • docker/setup-buildx-action v2.4.1 composite
.github/workflows/rtd-link-preview.yml actions
  • readthedocs/actions/preview v1 composite