https://github.com/braun-steven/pints
Probabilistic Inference on Noisy Time Series
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 2 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.5%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Probabilistic Inference on Noisy Time Series
Basic Info
- Host: GitHub
- Owner: braun-steven
- License: other
- Default Branch: master
- Homepage: http://pints.readthedocs.io
- Size: 150 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Fork of pints-team/pints
Created almost 5 years ago
· Last pushed almost 5 years ago
https://github.com/braun-steven/pints/blob/master/
[](https://github.com/pints-team/pints/actions)
[](https://github.com/pints-team/pints/actions)
[](https://codecov.io/gh/pints-team/pints)
[](https://github.com/pints-team/functional-testing)
[](https://www.cs.ox.ac.uk/projects/PINTS/functional-testing)
[](https://mybinder.org/v2/gh/pints-team/pints/master?filepath=examples)
[](http://pints.readthedocs.io/en/latest/?badge=latest)
[](https://bettercodehub.com/results/pints-team/pints)
# What is Pints?
PINTS (Probabilistic Inference on Noisy Time-Series) is a framework for optimisation and Bayesian inference on ODE models of noisy time-series, such as arise in electrochemistry and cardiac electrophysiology.
PINTS is described in [this publication in JORS](http://doi.org/10.5334/jors.252), and can be cited using the information given in our [CITATION file](https://github.com/pints-team/pints/blob/master/CITATION).
More information about PINTS papers can be found in the [papers directory](https://github.com/pints-team/pints/tree/master/papers).
## Using PINTS
PINTS can work with any model that implements the [pints.ForwardModel](http://pints.readthedocs.io/en/latest/core_classes_and_methods.html#forward-model) interface.
This has just two methods:
```
n_parameters() --> Returns the dimension of the parameter space.
simulate(parameters, times) --> Returns a vector of model evaluations at
the given times, using the given parameters
```
Experimental data sets in PINTS are defined simply as lists (or arrays) of `times` and corresponding experimental `values`.
If you have this kind of data, and if [your model (or model wrapper)](https://github.com/pints-team/pints/blob/master/examples/stats/custom-model.ipynb) implements the two methods above, then you are ready to start using PINTS to infer parameter values using [optimisation](https://github.com/pints-team/pints/blob/master/examples/optimisation/first-example.ipynb) or [sampling](https://github.com/pints-team/pints/blob/master/examples/sampling/first-example.ipynb).
A brief example is shown below:

_(Left)_ A noisy experimental time series and a computational forward model.
_(Right)_ Example code for an optimisation problem.
The full code can be [viewed here](https://github.com/pints-team/pints/blob/master/examples/sampling/readme-example.ipynb) but a friendlier, more elaborate, introduction can be found on the [examples page](https://github.com/pints-team/pints/blob/master/examples/README.md).
A graphical overview of the methods included in PINTS can be [viewed here](https://pints-team.github.io/pints-methods-overview/).
### Examples and documentation
PINTS comes with a number of [detailed examples](https://github.com/pints-team/pints/blob/master/examples/README.md), hosted here on github.
In addition, there is a [full API documentation](http://pints.readthedocs.io/en/latest/), hosted on readthedocs.io.
## Installing PINTS
The latest release of PINTS can be installed without downloading (cloning) the git repository, by opening a console and typing
```
$ pip install --upgrade pip
$ pip install pints
```
Note that you'll need Python 3.5+ (preferred), or failing that, Python 2.7.
If you prefer to have the latest cutting-edge version, you can instead install from the repository, by typing
```
$ git clone https://github.com/pints-team/pints.git
$ cd pints
$ pip install -e .[dev,docs]
```
To uninstall again, type:
```
$ pip uninstall pints
```
## What's new in this version of PINTS?
To see what's changed in the latest release, see the [CHANGELOG](https://github.com/pints-team/pints/blob/master/CHANGELOG.md).
## Contributing to PINTS
If you'd like to help us develop PINTS by adding new methods, writing documentation, or fixing embarassing bugs, please have a look at these [guidelines](https://github.com/pints-team/pints/blob/master/CONTRIBUTING.md) first.
## License
PINTS is fully open source. For more information about its license, see [LICENSE](https://github.com/pints-team/pints/blob/master/LICENSE.md).
## Get in touch
Questions, suggestions, or bug reports? [Open an issue](https://github.com/pints-team/pints/issues) and let us know.
Alternatively, feel free to email us at `pints at maillist.ox.ac.uk`.
Owner
- Name: Steven Braun
- Login: braun-steven
- Kind: user
- Company: @ml-research
- Website: www.steven-braun.com
- Twitter: sbraunmz
- Repositories: 9
- Profile: https://github.com/braun-steven
PhD Student at the AIML Lab @ml-research, Technical University of Darmstadt