Skip to content

Commit

Permalink
Refactor priors
Browse files Browse the repository at this point in the history
Introduce `Distribution` classes for handling prior distributions and sampling from them.
Later on this can be extended to noise models for measurements.
  • Loading branch information
dweindl committed Dec 6, 2024
1 parent d3e4006 commit 721ba31
Show file tree
Hide file tree
Showing 7 changed files with 755 additions and 119 deletions.
1 change: 1 addition & 0 deletions doc/example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The following examples should help to get a better idea of how to use the PEtab

example/example_petablint.ipynb
example/example_visualization.ipynb
example/distributions.ipynb

Examples of systems biology parameter estimation problems specified in PEtab
can be found in the `systems biology benchmark model collection <https://github.com/Benchmarking-Initiative/Benchmark-Models-PEtab>`_.
197 changes: 197 additions & 0 deletions doc/example/distributions.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,197 @@
{
"cells": [
{
"metadata": {},
"cell_type": "markdown",
"source": [
"# Prior distributions in PEtab\n",
"\n",
"This notebook gives a brief overview of the prior distributions in PEtab and how they are represented in the PEtab library.\n",
"\n",
"Prior distributions are used to specify the prior knowledge about the parameters.\n",
"Parameter priors are specified in the parameter table. A prior is defined by its type and its parameters.\n",
"Each prior type has a specific set of parameters. For example, the normal distribution has two parameters: the mean and the standard deviation.\n",
"\n",
"There are two types of priors in PEtab - objective priors and initialization priors:\n",
"\n",
"* *Objective priors* are used to specify the prior knowledge about the parameters that are to be estimated. They will enter the objective function of the optimization problem. They are specified in the `objectivePriorType` and `objectivePriorParameters` columns of the parameter table.\n",
"* *Initialization priors* can be used as a hint for the optimization algorithm. They will not enter the objective function. They are specified in the `initializationPriorType` and `initializationPriorParameters` columns of the parameter table.\n",
"\n",
"\n"
],
"id": "372289411a2aa7b3"
},
{
"metadata": {
"collapsed": true
},
"cell_type": "code",
"source": [
"import matplotlib.pyplot as plt\n",
"import numpy as np\n",
"import seaborn as sns\n",
"\n",
"from petab.v1.C import *\n",
"from petab.v1.distributions import *\n",
"\n",
"sns.set_style(None)\n",
"\n",
"\n",
"def plot(distr: Distribution, ax=None):\n",
" \"\"\"Visualize a distribution.\"\"\"\n",
" if ax is None:\n",
" fig, ax = plt.subplots()\n",
"\n",
" sample = distr.sample(10000)\n",
"\n",
" # pdf\n",
" xmin = min(sample.min(), distr.lb_scaled if distr.bounds is not None else sample.min())\n",
" xmax = max(sample.max(), distr.ub_scaled if distr.bounds is not None else sample.max())\n",
" x = np.linspace(xmin, xmax, 500)\n",
" y = distr.pdf(x)\n",
" ax.plot(x, y, color='red', label='pdf')\n",
"\n",
" sns.histplot(sample, stat='density', ax=ax, label=\"sample\")\n",
"\n",
" # bounds\n",
" if distr.bounds is not None:\n",
" for bound in (distr.lb_scaled, distr.ub_scaled):\n",
" if bound is not None and np.isfinite(bound):\n",
" ax.axvline(bound, color='black', linestyle='--', label='bound')\n",
"\n",
" ax.set_title(str(distr))\n",
" ax.set_xlabel('Parameter value on the parameter scale')\n",
" ax.grid(False)\n",
" handles, labels = ax.get_legend_handles_labels()\n",
" unique_labels = dict(zip(labels, handles))\n",
" ax.legend(unique_labels.values(), unique_labels.keys())\n",
" plt.show()"
],
"id": "initial_id",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "The basic distributions are the uniform, normal, Laplace, log-normal, and log-laplace distributions:\n",
"id": "db36a4a93622ccb8"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"plot(Uniform(0, 1))\n",
"plot(Normal(0, 1))\n",
"plot(Laplace(0, 1))\n",
"plot(LogNormal(0, 1))\n",
"plot(LogLaplace(1, 0.5))"
],
"id": "4f09e50a3db06d9f",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "If a parameter scale is specified, the sample is transformed accordingly (but not the distribution parameters):\n",
"id": "dab4b2d1e0f312d8"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"plot(Normal(10, 2, transformation=LIN))\n",
"plot(Normal(10, 2, transformation=LOG))\n",
"# Note that the log-normal is different from the log-transformed normal distribution:\n",
"plot(LogNormal(10, 2, transformation=LIN))"
],
"id": "f6192c226f179ef9",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "Prior distributions can also be defined on the parameter scale by using the types `parameterScaleUniform`, `parameterScaleNormal` or `parameterScaleLaplace`. In these cases, a sample from the given distribution is used directly, without applying any transformation according to `parameterScale` (this implies, that for `parameterScale=lin`, there is no difference between `parameterScaleUniform` and `uniform`):",
"id": "263c9fd31156a4d5"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"plot(Uniform(0, 1, transformation=LOG10))\n",
"plot(ParameterScaleUniform(0, 1, transformation=LOG10))\n",
"\n",
"plot(Uniform(0, 1, transformation=LIN))\n",
"plot(ParameterScaleUniform(0, 1, transformation=LIN))\n"
],
"id": "5ca940bc24312fc6",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "To prevent the sampled parameters from exceeding the bounds, the sampled parameters are clipped to the bounds. The bounds are defined in the parameter table. Note that the current implementation does not support sampling from a truncated distribution. Instead, the samples are clipped to the bounds. This may introduce unwanted bias, and thus, should only be used with caution (i.e., the bounds should be chosen wide enough):",
"id": "b1a8b17d765db826"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"plot(Normal(0, 1, bounds=(-4, 4))) # negligible clipping-bias at 4 sigma\n",
"plot(Uniform(0, 1, bounds=(0.1, 0.9))) # significant clipping-bias"
],
"id": "4ac42b1eed759bdd",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "Further distribution examples:",
"id": "45ffce1341483f24"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"plot(Normal(10, 1, bounds=(6, 14), transformation=\"log10\"))\n",
"plot(ParameterScaleNormal(10, 1, bounds=(10**6, 10**14), transformation=\"log10\"))\n"
],
"id": "581e1ac431860419",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "code",
"source": "",
"id": "802a64be56a6c94f",
"outputs": [],
"execution_count": null
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
1 change: 1 addition & 0 deletions doc/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ API Reference
petab.v1.composite_problem
petab.v1.conditions
petab.v1.core
petab.v1.distributions
petab.v1.lint
petab.v1.measurements
petab.v1.models
Expand Down
Loading

0 comments on commit 721ba31

Please sign in to comment.