ProbNumDiffEq.jl

ProbNumDiffEq.jl: Probabilistic Numerical Solvers for Ordinary Differential Equations in Julia - Published in JOSS (2024)

https://github.com/nathanaelbosch/probnumdiffeq.jl

Science Score: 100.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 9 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: joss.theoj.org
  • Committers with academic emails
    1 of 15 committers (6.7%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords

differential-equations julia ode ode-solver probabilistic-models probabilistic-numerics

Keywords from Contributors

graphics pde fluxes meshing dynamical-systems fluid-dynamics julialang interpretability data-assimilation climate-change
Last synced: 4 months ago · JSON representation ·

Repository

Probabilistic Numerical Differential Equation solvers via Bayesian filtering and smoothing

Basic Info
  • Host: GitHub
  • Owner: nathanaelbosch
  • License: mit
  • Language: Julia
  • Default Branch: main
  • Homepage:
  • Size: 79.4 MB
Statistics
  • Stars: 129
  • Watchers: 4
  • Forks: 16
  • Open Issues: 16
  • Releases: 68
Topics
differential-equations julia ode ode-solver probabilistic-models probabilistic-numerics
Created about 5 years ago · Last pushed 5 months ago
Metadata Files
Readme License Citation

README.md

ProbNumDiffEq.jl

Stable Development Build Status Coverage Benchmarks DOI

Banner

ProbNumDiffEq.jl provides probabilistic numerical ODE solvers to the DifferentialEquations.jl ecosystem. The implemented ODE filters solve differential equations via Bayesian filtering and smoothing. The filters compute not just a single point estimate of the true solution, but a posterior distribution that contains an estimate of its numerical approximation error.

For a short intro video, check out the ProbNumDiffEq.jl poster presentation at JuliaCon2021.

Installation

Run Julia, enter ] to bring up Julia's package manager, and add the ProbNumDiffEq.jl package:

julia> ] (v1.8) pkg> add ProbNumDiffEq

Example: Solving the FitzHugh-Nagumo ODE

```julia using ProbNumDiffEq

ODE definition as in DifferentialEquations.jl

function f(du, u, p, t) a, b, c = p du[1] = c * (u[1] - u[1]^3 / 3 + u[2]) du[2] = -(1 / c) * (u[1] - a - b * u[2]) end u0 = [-1.0, 1.0] tspan = (0.0, 20.0) p = (0.2, 0.2, 3.0) prob = ODEProblem(f, u0, tspan, p)

Solve the ODE with a probabilistic numerical solver: EK1

sol = solve(prob, EK1())

Plot the solution with Plots.jl

using Plots plot(sol, color=["#CB3C33" "#389826" "#9558B2"]) ```

Fitzhugh-Nagumo Solution

In probabilistic numerics, the solution also contains error estimates - it just happens that they are too small to be visible in the plot above. But we can just plot them directly:

julia using Statistics stds = std.(sol.pu) plot(sol.t, hcat(stds...)', color=["#CB3C33" "#389826" "#9558B2"], label=["std(u1(t))" "std(u2(t))"], xlabel="t", ylabel="standard-deviation")

Fitzhugh-Nagumo Standard-Deviations

Contributing

Contributions are very welcome! Check the existing issues for ideas on how to contribute to the package. If you want to implement a new functionality/algorithm, open an issue to start a discussion.

Please open issues liberally! If there is anything that's unclear or doesn't work, we would very much like to know about it. This includes not just bugs and feature requests but also general questions about the software, feedback and suggestions.

Citing ProbNumDiffEq.jl

If you use ProbNumDiffEq.jl helpful for your research project, please cite our JOSS paper (link): @article{Bosch2024, doi = {10.21105/joss.07048}, url = {https://doi.org/10.21105/joss.07048}, year = 2024, publisher = {The Open Journal}, volume = 9, number = 101, pages = 7048, author = {Nathanael Bosch}, title = {ProbNumDiffEq.jl: Probabilistic Numerical Solvers for Ordinary Differential Equations in Julia}, journal = {Journal of Open Source Software} }

Related packages

  • ProbDiffEq is similar in scope to ProbNumDiffEq.jl and it provides fast and feature-rich probabilistic ODE solvers but is implemented in Python and built on JAX.
  • ProbNum implements a wide range of probabilistic numerical methods, not only for ODEs but also for linear algebra, quadrature, and filtering/smoothing. It is implemented in Python and NumPy, and it focuses more on breadth and didactic purposes than on performance.

Owner

  • Name: Nathanael Bosch
  • Login: nathanaelbosch
  • Kind: user
  • Location: Tübingen, Germany
  • Company: University of Tübingen

PhD student at Uni Tübingen, working on machine learning and probabilistic numerics.

JOSS Publication

ProbNumDiffEq.jl: Probabilistic Numerical Solvers for Ordinary Differential Equations in Julia
Published
September 30, 2024
Volume 9, Issue 101, Page 7048
Authors
Nathanael Bosch ORCID
Tübingen AI Center, University of Tübingen, Germany
Editor
Mehmet Hakan Satman ORCID
Tags
probabilistic numerics differential equations Bayesian filtering and smoothing simulation

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please it as below."
authors:
- family-names: "Bosch"
  given-names: "Nathanael"
  orcid: "https://orcid.org/0000-0003-0139-4622"
title: 'ProbNumDiffEq.jl: Probabilistic Numerical Solvers for Ordinary Differential Equations in Julia'
version: 0.16.2
doi: 10.21105/joss.07048
date-released: '2024-10-01'
url: https://doi.org/10.21105/joss.07048

GitHub Events

Total
  • Create event: 12
  • Commit comment event: 4
  • Release event: 2
  • Issues event: 2
  • Watch event: 9
  • Delete event: 10
  • Issue comment event: 35
  • Push event: 59
  • Pull request review event: 4
  • Pull request review comment event: 5
  • Pull request event: 31
  • Fork event: 1
Last Year
  • Create event: 12
  • Commit comment event: 4
  • Release event: 2
  • Issues event: 2
  • Watch event: 9
  • Delete event: 10
  • Issue comment event: 35
  • Push event: 59
  • Pull request review event: 4
  • Pull request review comment event: 5
  • Pull request event: 31
  • Fork event: 1

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 1,027
  • Total Committers: 15
  • Avg Commits per committer: 68.467
  • Development Distribution Score (DDS): 0.162
Past Year
  • Commits: 25
  • Committers: 5
  • Avg Commits per committer: 5.0
  • Development Distribution Score (DDS): 0.52
Top Committers
Name Email Commits
Nathanael Bosch n****h@t****e 861
github-actions[bot] 4****] 104
Nathanael Bosch n****h@g****e 43
dependabot[bot] 4****] 5
Christopher Rackauckas a****s@c****m 3
Pietro Monticone 3****e 2
Cornelius Roemer c****r@g****m 1
Daniel González Arribas d****s@g****m 1
David Widmann d****n 1
Jadon Clugston 3****r 1
Jose Storopoli 4****i 1
Qingyu Qu 5****Y 1
Tim Holy t****y@g****m 1
Vedant Puri v****i@g****m 1
CompatHelper Julia c****y@j****g 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 34
  • Total pull requests: 189
  • Average time to close issues: 3 months
  • Average time to close pull requests: 12 days
  • Total issue authors: 11
  • Total pull request authors: 11
  • Average comments per issue: 3.35
  • Average comments per pull request: 1.07
  • Merged pull requests: 175
  • Bot issues: 0
  • Bot pull requests: 57
Past Year
  • Issues: 3
  • Pull requests: 30
  • Average time to close issues: 2 days
  • Average time to close pull requests: 16 days
  • Issue authors: 3
  • Pull request authors: 6
  • Average comments per issue: 2.0
  • Average comments per pull request: 1.97
  • Merged pull requests: 21
  • Bot issues: 0
  • Bot pull requests: 12
Top Authors
Issue Authors
  • nathanaelbosch (23)
  • ranocha (2)
  • ChrisRackauckas (1)
  • lazarusA (1)
  • vboddeti (1)
  • jnsbck (1)
  • TheFibonacciEffect (1)
  • PieterjanRobbe (1)
  • sdwfrost (1)
  • rolson24 (1)
  • JuliaTagBot (1)
Pull Request Authors
  • nathanaelbosch (134)
  • github-actions[bot] (60)
  • dependabot[bot] (8)
  • ChrisRackauckas (5)
  • jbytecode (2)
  • pitmonticone (2)
  • jClugstor (2)
  • vpuri3 (1)
  • devmotion (1)
  • DaniGlez (1)
  • timholy (1)
Top Labels
Issue Labels
help wanted (3) bug (3) enhancement (2) question (1) documentation (1)
Pull Request Labels
dependencies (8) github_actions (1)

Packages

  • Total packages: 1
  • Total downloads:
    • julia 2 total
  • Total dependent packages: 1
  • Total dependent repositories: 0
  • Total versions: 67
juliahub.com: ProbNumDiffEq

Probabilistic Numerical Differential Equation solvers via Bayesian filtering and smoothing

  • Versions: 67
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 2 Total
Rankings
Stargazers count: 8.4%
Average: 9.8%
Forks count: 11.2%
Last synced: 4 months ago

Dependencies

.github/workflows/CI.yml actions
  • actions/cache v1 composite
  • actions/checkout v2 composite
  • codecov/codecov-action v1 composite
  • julia-actions/julia-buildpkg v1 composite
  • julia-actions/julia-processcoverage v1 composite
  • julia-actions/julia-runtest v1 composite
  • julia-actions/setup-julia v1 composite
.github/workflows/Downstream.yml actions
  • actions/checkout v2 composite
  • julia-actions/julia-buildpkg latest composite
  • julia-actions/setup-julia v1 composite
.github/workflows/FormatCheck.yml actions
  • actions/checkout v1 composite
  • julia-actions/setup-julia latest composite
.github/workflows/TagBot.yml actions
  • JuliaRegistries/TagBot v1 composite
.github/workflows/register.yml actions
  • julia-actions/RegisterAction latest composite
.github/workflows/CompatHelper.yml actions
.github/workflows/dependabot.yml actions