The eulerian parameter inference (eulerpi) returns a parameter distribution, which is consistent with the observed data by solving the inverse problem directly. In the case of a one-to-one mapping, this is the true underlying distribution.
Project description
Euler Parameter Inference (EPI) is a Python package for inverse parameter inference. It provides an implementation of the EPI algorithm, which takes observed data and a model as input and returns a parameter distribution consistent with the observed data by solving the inverse problem directly. In the case of a one-to-one mapping, this is the true underlying distribution.
Documentation
The full documentation to this software, including a detailed tutorial on how to use EPI and the api documentation, can be found under Documentation.
Features
EPI supports
- SBML ode models
- User provided models
- Models with automatic differentation using jax
Installation
The package is available on pypi and can be installed with:
pip install eulerpi
Make sure that you have the following C++ libraries installed
sudo apt install -y swig libblas-dev libatlas-base-dev libhdf5-dev
You can also build the library from the latest source code by following the Development Quickstart Guide.
Using the library
To use EPI, derive your model from the Model
class and implement the abstract functions. Here's an example code snippet:
# my_model.py
import jax.numpy as jnp
from eulerpi.core.model import Model
class MyModel(Model):
param_dim = N # The dimension of a parameter point
data_dim = M # The dimension of a data point
def forward(self, param):
return jnp.array(...)
def jacobian(self, param):
return jnp.array(...)
To evaluate the model and infer the parameter distribution, call:
from eulerpi.sampling import inference
from my_model import MyModel
central_param = np.array([0.5, -1.5, ...])
param_limits = np.array([[0.0, 1.0], [-3.0, 0.0], ...])
model = MyModel(central_param, param_limits)
inference(model=model, data="my_data.csv")
The data
argument can be a numpy-2d-array or a PathLike object that points to a CSV file. In the example shown above, the CSV file my_data.csv
should contain the data in the following format:
datapoint_dim1, datapoint_dim2, datapoint_dim3, ..., datapoint_dimN
datapoint_dim1, datapoint_dim2, datapoint_dim3, ..., datapoint_dimN
datapoint_dim1, datapoint_dim2, datapoint_dim3, ..., datapoint_dimN
...
datapoint_dim1, datapoint_dim2, datapoint_dim3, ..., datapoint_dimN
This corresponds to a matrix with the shape nSamples x data_dim
. For more available options and parameters for the inference
method, please refer to the api documentation. Note that the inference can be done with grid-based methods (dense grids, sparse grids) or sampling methods (mcmc).
The results are stored in the following location:
./Applications/<ModelName>/.../OverallParams.csv
./Applications/<ModelName>/.../OverallSimResults.csv
./Applications/<ModelName>/.../OverallDensityEvals.csv
These files contain the sampled parameters, the corresponding data points obtained from the model forward pass, and the corresponding density evaluation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eulerpi-0.2.0.tar.gz
.
File metadata
- Download URL: eulerpi-0.2.0.tar.gz
- Upload date:
- Size: 126.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.11 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05dc8534771ffd3fd188afa5bb90feb525df944595368d9d58fec7372e02e0a5 |
|
MD5 | 6380e91ceccb1902f98846e58e69d876 |
|
BLAKE2b-256 | 0dabf5418755521ca560d06df921bb8e6606713a5e6f6a1fa135551205cfd686 |
Provenance
File details
Details for the file eulerpi-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: eulerpi-0.2.0-py3-none-any.whl
- Upload date:
- Size: 134.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.11 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ba1a1a8c40c7da38a1f291386bd0345e557b7c2b086476a2b8f2af871c79729 |
|
MD5 | 701986db1b934d2451d1e3f48008bdce |
|
BLAKE2b-256 | e8cc99a9b3674f8e84a9f04646e6cdeb765e5bde788af910f7005da4a36b94c3 |