Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Petab Importer reforge #1442

Merged
merged 42 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
cab5b27
Moved creation of the amici objective function to a separate class, l…
PaulJonasJost Jul 31, 2024
cf348c1
Remove check gradients, as this can be done in an objective function
PaulJonasJost Jul 31, 2024
3775c3c
Added functions with a not implementedError and moved most of them to…
PaulJonasJost Jul 31, 2024
68f365b
Moved import to a factory, allowing a single PEtabImporter to functio…
PaulJonasJost Aug 3, 2024
d214852
Resolve potential annotation problems.
PaulJonasJost Aug 3, 2024
7482672
Solved the problem of x_names not saving the fixd parameters. similar…
PaulJonasJost Aug 5, 2024
cf2edcd
rewrote petab testsuite to fit new design.
PaulJonasJost Aug 5, 2024
385030b
Adjusted text and example code for new changes
PaulJonasJost Aug 5, 2024
10c6765
import error with petab simulator
PaulJonasJost Aug 5, 2024
722d637
updated code
PaulJonasJost Aug 5, 2024
f0f672f
import petab as optional
PaulJonasJost Aug 5, 2024
a321a39
Adjusted roadrunner example and also solved issue in PetabImporterRR
PaulJonasJost Aug 5, 2024
865c3cc
Another import
PaulJonasJost Aug 5, 2024
cd96ac0
Another import and spline error
PaulJonasJost Aug 5, 2024
94ed171
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Aug 5, 2024
c9f9f7b
Changed the documentation that is included
PaulJonasJost Aug 5, 2024
32f930d
Merge remote-tracking branch 'origin/petab_simulator_support' into pe…
PaulJonasJost Aug 5, 2024
33e1a33
added test for petabSimulator with the example of basico
PaulJonasJost Aug 5, 2024
1ccdbf2
Fix text for check gradients and fix roadrunner notebook.
PaulJonasJost Aug 5, 2024
b80b4c8
added test for petabSimulator with the example of basico
PaulJonasJost Aug 8, 2024
ce91536
cleared output
PaulJonasJost Aug 9, 2024
9bbdb13
Hopeflly renamed everything
PaulJonasJost Aug 9, 2024
fef1387
Temporary fix for roadrunner fd objective
PaulJonasJost Aug 9, 2024
662de64
correct installation of basico as petab simulator in test
PaulJonasJost Aug 23, 2024
a34a54b
Removed try-except in simulator as it is to unspecific. Now requiring…
PaulJonasJost Aug 23, 2024
40269ec
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Aug 23, 2024
e21533d
not basico but copasi-basico
PaulJonasJost Aug 23, 2024
5293eef
Merge remote-tracking branch 'origin/petab_simulator_support' into pe…
PaulJonasJost Aug 23, 2024
77bb2bb
not copasi-basico but copasi-basico[petab]
PaulJonasJost Aug 23, 2024
8962a52
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Sep 4, 2024
f5f5d39
Adjusted some description text
PaulJonasJost Sep 9, 2024
479ba3e
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Sep 9, 2024
53c8e61
More accurate documentation
PaulJonasJost Sep 9, 2024
4c4e978
Replaced Usage of roadrunner, amici, petab strings with constants
PaulJonasJost Sep 9, 2024
5e5be6d
Update doc/example/petab_import.ipynb
PaulJonasJost Sep 9, 2024
2831e47
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Sep 11, 2024
20057d5
Update doc/example/petab_import.ipynb
PaulJonasJost Sep 16, 2024
460213b
Renamed factory mentions as it was not a fitting name.
PaulJonasJost Sep 16, 2024
fde7b07
added option to pass simulator type and simulator to create_objective…
PaulJonasJost Sep 16, 2024
a09e8bf
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Sep 16, 2024
983da42
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Sep 17, 2024
809a8e0
Merge branch 'develop' into petab_simulator_support
PaulJonasJost Sep 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions doc/example/censored_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,6 @@
"As there are no censored data specific inner options, we will pass none to the constructor."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"model = importer.create_model(verbose=False)\n",
"objective = importer.create_objective(model=model)"
]
},
{
"attachments": {},
"cell_type": "markdown",
Expand All @@ -172,7 +162,7 @@
"metadata": {},
"outputs": [],
"source": [
"problem = importer.create_problem(objective)\n",
"problem = importer.create_problem()\n",
"\n",
"engine = pypesto.engine.MultiProcessEngine(n_procs=3)\n",
"\n",
Expand Down
5 changes: 3 additions & 2 deletions doc/example/ordinal_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,8 @@
"metadata": {},
"outputs": [],
"source": [
"objective = importer.create_objective(verbose=False)"
"factory = importer.create_objective_creator()\n",
"objective = factory.create_objective(verbose=False)"
]
},
{
Expand All @@ -559,7 +560,7 @@
"metadata": {},
"outputs": [],
"source": [
"objective = importer.create_objective(\n",
"objective = factory.create_objective(\n",
" inner_options={\n",
" \"method\": \"reduced\",\n",
" \"reparameterized\": True,\n",
Expand Down
8 changes: 5 additions & 3 deletions doc/example/petab_import.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"The model must be imported to pyPESTO and AMICI. Therefore, we create a `pypesto.PetabImporter` from the problem, and create an AMICI model."
"The model must be imported to pyPESTO and AMICI. Therefore, we create a `pypesto.PetabImporter` from the problem. The importer itself creates a `pypesto.petab.Factory`, which is used to create the AMICI objective and model."
PaulJonasJost marked this conversation as resolved.
Show resolved Hide resolved
]
},
{
Expand All @@ -117,8 +117,9 @@
"outputs": [],
"source": [
"importer = pypesto.petab.PetabImporter(petab_problem)\n",
"factory = importer.create_objective_creator()\n",
"\n",
"model = importer.create_model(verbose=False)\n",
"model = factory.create_model(verbose=False)\n",
"\n",
"# some model properties\n",
"print(\"Model parameters:\", list(model.getParameterIds()), \"\\n\")\n",
Expand Down Expand Up @@ -178,7 +179,8 @@
"converter_config = libsbml.SBMLLocalParameterConverter().getDefaultProperties()\n",
"petab_problem.sbml_document.convert(converter_config)\n",
"\n",
"obj = importer.create_objective()\n",
"factory = importer.create_objective_creator()\n",
"obj = factory.create_objective()\n",
"\n",
"# for some models, hyperparameters need to be adjusted\n",
"# obj.amici_solver.setMaxSteps(10000)\n",
Expand Down
13 changes: 6 additions & 7 deletions doc/example/roadrunner.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,9 @@
"import petab\n",
"import pypesto.objective\n",
"import pypesto.optimize as optimize\n",
"import pypesto.objective.roadrunner as pypesto_rr\n",
"import pypesto.sample as sample\n",
"import pypesto.petab\n",
"import pypesto.visualize as visualize\n",
"import pypesto.profile as profile\n",
"import pypesto.objective.roadrunner as pypesto_rr\n",
"from IPython.display import Markdown, display\n",
"from pprint import pprint\n",
"\n",
Expand Down Expand Up @@ -80,7 +79,7 @@
"source": [
"## Creating pyPESTO problem from PEtab\n",
"\n",
"The [PEtab file format](https://petab.readthedocs.io/en/latest/documentation_data_format.html) stores all the necessary information to define a parameter estimation problem. This includes the model, the experimental data, the parameters to estimate, and the experimental conditions. Using the `pypesto_rr.PetabImporterRR` class, we can create a pyPESTO problem directly from a PEtab problem."
"The [PEtab file format](https://petab.readthedocs.io/en/latest/documentation_data_format.html) stores all the necessary information to define a parameter estimation problem. This includes the model, the experimental data, the parameters to estimate, and the experimental conditions. Using the `pypesto.petab.PetabImporter` class, we can create a pyPESTO problem directly from a PEtab problem."
]
},
{
Expand All @@ -97,7 +96,7 @@
"petab_yaml = f\"./{model_name}/{model_name}.yaml\"\n",
"\n",
"petab_problem = petab.Problem.from_yaml(petab_yaml)\n",
"importer = pypesto_rr.PetabImporterRR(petab_problem)\n",
"importer = pypesto.petab.PetabImporter(petab_problem, simulator_type=\"roadrunner\")\n",
"problem = importer.create_problem()"
]
},
Expand Down Expand Up @@ -329,7 +328,7 @@
"# no support for sensitivities\n",
"try:\n",
" ret = problem.objective(\n",
" petab_problem.get_x_nominal(fixed=False,scaled=True),\n",
" petab_problem.x_nominal_free_scaled,\n",
" mode=\"mode_fun\",\n",
" return_dict=True,\n",
" sensi_orders=(1,),\n",
Expand All @@ -354,7 +353,7 @@
"# support through finite differences\n",
"try:\n",
" ret = objective_fd(\n",
" petab_problem.get_x_nominal(fixed=False,scaled=True),\n",
" petab_problem.x_nominal_scaled,\n",
" mode=\"mode_fun\",\n",
" return_dict=True,\n",
" sensi_orders=(1,),\n",
Expand Down
5 changes: 3 additions & 2 deletions doc/example/semiquantitative_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@
"metadata": {},
"outputs": [],
"source": [
"objective = importer.create_objective(verbose=False)"
"factory = importer.create_objective_creator()\n",
"objective = factory.create_objective(verbose=False)"
]
},
{
Expand All @@ -210,7 +211,7 @@
"metadata": {},
"outputs": [],
"source": [
"objective = importer.create_objective(\n",
"objective = factory.create_objective(\n",
" inner_options={\n",
" \"spline_ratio\": 1 / 2,\n",
" \"min_diff_factor\": 1 / 2,\n",
Expand Down
2 changes: 2 additions & 0 deletions pypesto/objective/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
from .base import ObjectiveBase
from .finite_difference import FD, FDDelta
from .function import Objective
from .petab import PetabSimulatorObjective
from .priors import (
NegLogParameterPriors,
NegLogPriors,
get_parameter_prior_dict,
)
from .roadrunner import RoadRunnerObjective
102 changes: 102 additions & 0 deletions pypesto/objective/petab.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
"""Objective function for PEtab models using the PEtab simulator."""
from __future__ import annotations

try:
import petab.v1 as petab
from petab.v1.simulate import Simulator as PetabSimulator
except ImportError:
petab = None
from collections import OrderedDict
from collections.abc import Sequence

import numpy as np

from ..C import FVAL, MODE_FUN, MODE_RES, RES, ModeType
from .base import ObjectiveBase, ResultDict


class PetabSimulatorObjective(ObjectiveBase):
"""Objective function for PEtab models using the PEtab simulator."""

def __init__(
self,
simulator: PetabSimulator,
x_names: Sequence[str] | None = None,
):
"""Initialize the PEtab simulator objective function.
Parameters
----------
petab_problem:
The PEtab problem.
simulator:
The PEtab simulator.
x_names:
Names of optimization parameters.
"""
if petab is None:
raise ImportError(
"The `petab` package is required for this objective function."
)
self.simulator = simulator
self.petab_problem = self.simulator.petab_problem
if x_names is None:
x_names = list(self.petab_problem.get_x_ids())
super().__init__(x_names=x_names)

def replace_parameters(self, x: np.ndarray):
"""Replace the parameters in the PEtab problem with the given values.
Parameters
----------
x:
Parameter vector for optimization.
"""
x_dict = OrderedDict(zip(self._x_names, x))
x_unscaled = self.petab_problem.unscale_parameters(x_dict)
par_df = self.petab_problem.parameter_df
par_df["nominalValue"] = par_df.index.map(x_unscaled)
self.simulator.set_parameters(x_unscaled)

def call_unprocessed(
self,
x: np.ndarray,
sensi_orders: tuple[int, ...],
mode: ModeType,
return_dict: bool,
**kwargs,
) -> ResultDict:
"""See :meth:`ObjectiveBase.call_unprocessed`."""

self.replace_parameters(x)
sim_df = self.simulator.simulate(noise=False, as_measurement=False)
result = {}
result["simulations"] = sim_df
if mode == MODE_FUN:
result[FVAL] = -petab.calculate_llh(
measurement_dfs=self.petab_problem.measurement_df,
simulation_dfs=sim_df,
observable_dfs=self.petab_problem.observable_df,
parameter_dfs=self.petab_problem.parameter_df,
)
elif mode == MODE_RES:
result[RES] = petab.calculate_residuals(
measurement_dfs=self.petab_problem.measurement_df,
simulation_dfs=sim_df,
observable_dfs=self.petab_problem.observable_df,
parameter_dfs=self.petab_problem.parameter_df,
)
return result

def check_sensi_orders(
self,
sensi_orders: tuple[int, ...],
mode: ModeType,
) -> bool:
"""See :class:`ObjectiveBase` documentation."""
if not sensi_orders:
return True
sensi_order = max(sensi_orders)
max_sensi_order = 0

return sensi_order <= max_sensi_order
6 changes: 6 additions & 0 deletions pypesto/objective/roadrunner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
RoadRunner objective
====================
"""
__all__ = [
"PetabImporterRR",
"RoadRunnerCalculator",
"ExpData",
"SolverOptions",
]

from .petab_importer_roadrunner import PetabImporterRR
from .road_runner import RoadRunnerObjective
Expand Down
41 changes: 30 additions & 11 deletions pypesto/objective/roadrunner/petab_importer_roadrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,25 @@
import logging
import numbers
import re
import warnings
from collections.abc import Iterable
from pathlib import Path
from typing import Any

import libsbml
import petab.v1 as petab
import roadrunner
from petab.v1.C import (
OBSERVABLE_FORMULA,
PREEQUILIBRATION_CONDITION_ID,
SIMULATION_CONDITION_ID,
)
from petab.v1.models.sbml_model import SbmlModel
from petab.v1.parameter_mapping import ParMappingDictQuadruple
try:
import petab.v1 as petab
from petab.v1.C import (
OBSERVABLE_FORMULA,
PREEQUILIBRATION_CONDITION_ID,
SIMULATION_CONDITION_ID,
)
from petab.v1.models.sbml_model import SbmlModel
from petab.v1.parameter_mapping import ParMappingDictQuadruple
except ImportError:
petab = None

import pypesto.C

from ...petab.importer import PetabStartpoints
from ...problem import Problem
from ...startpoint import StartpointMethod
from ..aggregated import AggregatedObjective
Expand All @@ -35,6 +36,13 @@
from .roadrunner_calculator import RoadRunnerCalculator
from .utils import ExpData

try:
import libsbml
import roadrunner
except ImportError:
roadrunner = None
libsbml = None

logger = logging.getLogger(__name__)


Expand Down Expand Up @@ -62,6 +70,14 @@ def __init__(
validate_petab:
Flag indicating if the PEtab problem shall be validated.
"""
warnings.warn(
"The RoadRunner importer is deprecated and will be removed in "
"future versions. Please use the generic PetabImporter instead "
"with `simulator_type='roadrunner'`. Everything else will stay "
"same.",
DeprecationWarning,
stacklevel=2,
)
self.petab_problem = petab_problem
if validate_petab:
if petab.lint_problem(petab_problem):
Expand Down Expand Up @@ -288,6 +304,7 @@ def create_objective(
petab_problem=self.petab_problem,
calculator=calculator,
x_names=x_names,
x_ids=x_names,
)

def create_prior(self) -> NegLogParameterPriors | None:
Expand Down Expand Up @@ -344,6 +361,8 @@ def create_startpoint_method(self, **kwargs) -> StartpointMethod:
Additional keyword arguments passed on to
:meth:`pypesto.startpoint.FunctionStartpoints.__init__`.
"""
from ...petab.util import PetabStartpoints

return PetabStartpoints(petab_problem=self.petab_problem, **kwargs)

def create_problem(
Expand Down
Loading