forked from AMICI-dev/AMICI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathde_model_components.py
More file actions
800 lines (622 loc) · 21.5 KB
/
de_model_components.py
File metadata and controls
800 lines (622 loc) · 21.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
"""Objects for AMICI's internal differential equation model representation"""
import abc
import numbers
from typing import SupportsFloat
import sympy as sp
from .import_utils import (
RESERVED_SYMBOLS,
ObservableTransformation,
amici_time_symbol,
cast_to_sym,
generate_measurement_symbol,
generate_regularization_symbol,
)
from .constants import SymbolId
__all__ = [
"ConservationLaw",
"Constant",
"Event",
"Expression",
"LogLikelihoodY",
"LogLikelihoodZ",
"LogLikelihoodRZ",
"ModelQuantity",
"Observable",
"Parameter",
"SigmaY",
"SigmaZ",
"DifferentialState",
"EventObservable",
"AlgebraicState",
"AlgebraicEquation",
"State",
]
class ModelQuantity:
"""
Base class for model components
"""
def __init__(
self,
identifier: sp.Symbol,
name: str,
value: SupportsFloat | numbers.Number | sp.Expr,
):
"""
Create a new ModelQuantity instance.
:param identifier:
unique identifier of the quantity
:param name:
individual name of the quantity (does not need to be unique)
:param value:
either formula, numeric value or initial value
"""
if not isinstance(identifier, sp.Symbol):
raise TypeError(
f"identifier must be sympy.Symbol, was " f"{type(identifier)}"
)
if str(identifier) in RESERVED_SYMBOLS or (
hasattr(identifier, "name") and identifier.name in RESERVED_SYMBOLS
):
raise ValueError(
f'Cannot add model quantity with name "{name}", '
f"please rename."
)
self._identifier: sp.Symbol = identifier
if not isinstance(name, str):
raise TypeError(f"name must be str, was {type(name)}")
self._name: str = name
self._value: sp.Expr = cast_to_sym(value, "value")
def __repr__(self) -> str:
"""
Representation of the ModelQuantity object
:return:
string representation of the ModelQuantity
"""
return str(self._identifier)
def get_id(self) -> sp.Symbol:
"""
ModelQuantity identifier
:return:
identifier of the ModelQuantity
"""
return self._identifier
def get_name(self) -> str:
"""
ModelQuantity name
:return:
name of the ModelQuantity
"""
return self._name
def get_val(self) -> sp.Expr:
"""
ModelQuantity value
:return:
value of the ModelQuantity
"""
return self._value
def set_val(self, val: sp.Expr):
"""
Set ModelQuantity value
:return:
value of the ModelQuantity
"""
self._value = cast_to_sym(val, "value")
class ConservationLaw(ModelQuantity):
"""
A conservation law defines the absolute the total amount of a
(weighted) sum of states
"""
def __init__(
self,
identifier: sp.Symbol,
name: str,
value: sp.Expr,
coefficients: dict[sp.Symbol, sp.Expr],
state_id: sp.Symbol,
):
"""
Create a new ConservationLaw instance.
:param identifier:
unique identifier of the ConservationLaw
:param name:
individual name of the ConservationLaw (does not need to be
unique)
:param value: formula (sum of states)
:param coefficients:
coefficients of the states in the sum
:param state_id:
identifier of the state that this conservation law replaces
"""
self._state_expr: sp.Symbol = identifier - (value - state_id)
self._coefficients: dict[sp.Symbol, sp.Expr] = coefficients
self._ncoeff: sp.Expr = coefficients[state_id]
super().__init__(identifier, name, value)
def get_ncoeff(self, state_id) -> sp.Expr | int | float:
"""
Computes the normalized coefficient a_i/a_j where i is the index of
the provided state_id and j is the index of the state that is
replaced by this conservation law. This can be used to compute both
dtotal_cl/dx_rdata (=ncoeff) and dx_rdata/dx_solver (=-ncoeff).
:param state_id:
identifier of the state
:return: normalized coefficent of the state
"""
return self._coefficients.get(state_id, 0.0) / self._ncoeff
def get_x_rdata(self):
"""
Returns the expression that allows computation of x_rdata for the state
that this conservation law replaces.
:return: x_rdata expression
"""
return self._state_expr
class AlgebraicEquation(ModelQuantity):
"""
An AlgebraicEquation defines an algebraic equation.
"""
def __init__(self, identifier: str, value: sp.Expr):
"""
Create a new AlgebraicEquation instance.
:param value:
Formula of the algebraic equation, the solution is given by
``formula == 0``
"""
super().__init__(sp.Symbol(identifier), identifier, value)
def get_free_symbols(self):
return self._value.free_symbols
def __repr__(self):
return str(self._value)
class State(ModelQuantity):
"""
Base class for differential and algebraic model states
"""
_conservation_law: ConservationLaw | None = None
def get_x_rdata(self):
"""
Returns the expression that allows computation of x_rdata for this
state, accounting for conservation laws.
:return: x_rdata expression
"""
if self._conservation_law is None:
return self.get_id()
else:
return self._conservation_law.get_x_rdata()
def get_dx_rdata_dx_solver(self, state_id):
"""
Returns the expression that allows computation of
``dx_rdata_dx_solver`` for this state, accounting for conservation
laws.
:return: dx_rdata_dx_solver expression
"""
if self._conservation_law is None:
return sp.Integer(self._identifier == state_id)
else:
return -self._conservation_law.get_ncoeff(state_id)
@abc.abstractmethod
def has_conservation_law(self):
"""
Checks whether this state has a conservation law assigned.
:return: True if assigned, False otherwise
"""
...
class AlgebraicState(State):
"""
An AlgebraicState defines an entity that is algebraically determined
"""
def __init__(self, identifier: sp.Symbol, name: str, init: sp.Expr):
"""
Create a new AlgebraicState instance.
:param identifier:
unique identifier of the AlgebraicState
:param name:
individual name of the AlgebraicState (does not need to be unique)
:param init:
initial value of the AlgebraicState
"""
super().__init__(identifier, name, init)
def has_conservation_law(self):
"""
Checks whether this state has a conservation law assigned.
:return: True if assigned, False otherwise
"""
return False
def get_free_symbols(self):
return self._value.free_symbols
def get_x_rdata(self):
return self._identifier
class DifferentialState(State):
"""
A State variable defines an entity that evolves with time according to
the provided time derivative, abbreviated by ``x``.
:ivar _conservation_law:
algebraic formula that allows computation of this
state according to a conservation law
:ivar _dt:
algebraic formula that defines the temporal derivative of this state
"""
def __init__(
self, identifier: sp.Symbol, name: str, init: sp.Expr, dt: sp.Expr
):
"""
Create a new State instance. Extends :meth:`ModelQuantity.__init__`
by ``dt``
:param identifier:
unique identifier of the state
:param name:
individual name of the state (does not need to be unique)
:param init:
initial value
:param dt:
time derivative
"""
super().__init__(identifier, name, init)
self._dt = cast_to_sym(dt, "dt")
self._conservation_law: ConservationLaw | None = None
def set_conservation_law(self, law: ConservationLaw) -> None:
"""
Sets the conservation law of a state.
If a conservation law is set, the respective state will be replaced by
an algebraic formula according to the respective conservation law.
:param law:
linear sum of states that if added to this state remain
constant over time
"""
if not isinstance(law, ConservationLaw):
raise TypeError(
f"conservation law must have type ConservationLaw"
f", was {type(law)}"
)
self._conservation_law = law
def set_dt(self, dt: sp.Expr) -> None:
"""
Sets the time derivative
:param dt:
time derivative
"""
self._dt = cast_to_sym(dt, "dt")
def get_dt(self) -> sp.Expr:
"""
Gets the time derivative
:return:
time derivative
"""
return self._dt
def get_free_symbols(self) -> set[sp.Basic]:
"""
Gets the set of free symbols in time derivative and initial conditions
:return:
free symbols
"""
return self._dt.free_symbols.union(self._value.free_symbols)
def has_conservation_law(self):
"""
Checks whether this state has a conservation law assigned.
:return: True if assigned, False otherwise
"""
return self._conservation_law is not None
class Observable(ModelQuantity):
"""
An Observable links model simulations to experimental measurements,
abbreviated by ``y``.
:ivar _measurement_symbol:
sympy symbol used in the objective function to represent
measurements to this observable
:ivar trafo:
observable transformation, only applies when evaluating objective
function or residuals
"""
_measurement_symbol: sp.Symbol | None = None
def __init__(
self,
identifier: sp.Symbol,
name: str,
value: sp.Expr,
measurement_symbol: sp.Symbol | None = None,
transformation: None
| (ObservableTransformation) = ObservableTransformation.LIN,
):
"""
Create a new Observable instance.
:param identifier:
unique identifier of the Observable
:param name:
individual name of the Observable (does not need to be unique)
:param value:
formula
:param transformation:
observable transformation, only applies when evaluating objective
function or residuals
"""
super().__init__(identifier, name, value)
self._measurement_symbol = measurement_symbol
self._regularization_symbol = None
self.trafo = transformation
def get_measurement_symbol(self) -> sp.Symbol:
if self._measurement_symbol is None:
self._measurement_symbol = generate_measurement_symbol(
self.get_id()
)
return self._measurement_symbol
def get_regularization_symbol(self) -> sp.Symbol:
if self._regularization_symbol is None:
self._regularization_symbol = generate_regularization_symbol(
self.get_id()
)
return self._regularization_symbol
class EventObservable(Observable):
"""
An Event Observable links model simulations to event related experimental
measurements, abbreviated by ``z``.
:ivar _event:
symbolic event identifier
"""
def __init__(
self,
identifier: sp.Symbol,
name: str,
value: sp.Expr,
event: sp.Symbol,
measurement_symbol: sp.Symbol | None = None,
transformation: ObservableTransformation | None = "lin",
):
"""
Create a new EventObservable instance.
:param identifier:
See :py:meth:`Observable.__init__`.
:param name:
See :py:meth:`Observable.__init__`.
:param value:
See :py:meth:`Observable.__init__`.
:param transformation:
See :py:meth:`Observable.__init__`.
:param event:
Symbolic identifier of the corresponding event.
"""
super().__init__(
identifier, name, value, measurement_symbol, transformation
)
self._event: sp.Symbol = event
def get_event(self) -> sp.Symbol:
"""
Get the symbolic identifier of the corresponding event.
:return: symbolic identifier
"""
return self._event
class Sigma(ModelQuantity):
"""
A Standard Deviation Sigma rescales the distance between simulations
and measurements when computing residuals or objective functions,
abbreviated by ``sigma{y,z}``.
"""
def __init__(self, identifier: sp.Symbol, name: str, value: sp.Expr):
"""
Create a new Standard Deviation instance.
:param identifier:
unique identifier of the Standard Deviation
:param name:
individual name of the Standard Deviation (does not need to
be unique)
:param value:
formula
"""
if self.__class__.__name__ == "Sigma":
raise RuntimeError(
"This class is meant to be sub-classed, not used directly."
)
super().__init__(identifier, name, value)
class SigmaY(Sigma):
"""
Standard deviation for observables
"""
class SigmaZ(Sigma):
"""
Standard deviation for event observables
"""
class Expression(ModelQuantity):
"""
An Expression is a recurring elements in symbolic formulas. Specifying
this may yield more compact expression which may lead to substantially
shorter model compilation times, but may also reduce model simulation time.
Abbreviated by ``w``.
"""
def __init__(self, identifier: sp.Symbol, name: str, value: sp.Expr):
"""
Create a new Expression instance.
:param identifier:
unique identifier of the Expression
:param name:
individual name of the Expression (does not need to be unique)
:param value:
formula
"""
super().__init__(identifier, name, value)
class Parameter(ModelQuantity):
"""
A Parameter is a free variable in the model with respect to which
sensitivities may be computed, abbreviated by ``p``.
"""
def __init__(
self, identifier: sp.Symbol, name: str, value: numbers.Number
):
"""
Create a new Expression instance.
:param identifier:
unique identifier of the Parameter
:param name:
individual name of the Parameter (does not need to be
unique)
:param value:
numeric value
"""
super().__init__(identifier, name, value)
class Constant(ModelQuantity):
"""
A Constant is a fixed variable in the model with respect to which
sensitivities cannot be computed, abbreviated by ``k``.
"""
def __init__(
self, identifier: sp.Symbol, name: str, value: numbers.Number
):
"""
Create a new Expression instance.
:param identifier:
unique identifier of the Constant
:param name:
individual name of the Constant (does not need to be unique)
:param value:
numeric value
"""
super().__init__(identifier, name, value)
class NoiseParameter(ModelQuantity):
"""
A NoiseParameter is an input variable for the computation of ``sigma`` that can be specified in a data-point
specific manner, abbreviated by ``np``. Only used for jax models.
"""
def __init__(self, identifier: sp.Symbol, name: str):
"""
Create a new Expression instance.
:param identifier:
unique identifier of the NoiseParameter
:param name:
individual name of the NoiseParameter (does not need to be
unique)
"""
super().__init__(identifier, name, 0.0)
class ObservableParameter(ModelQuantity):
"""
A NoiseParameter is an input variable for the computation of ``y`` that can be specified in a data-point specific
manner, abbreviated by ``op``. Only used for jax models.
"""
def __init__(self, identifier: sp.Symbol, name: str):
"""
Create a new Expression instance.
:param identifier:
unique identifier of the ObservableParameter
:param name:
individual name of the ObservableParameter (does not need to be
unique)
"""
super().__init__(identifier, name, 0.0)
class LogLikelihood(ModelQuantity):
"""
A LogLikelihood defines the distance between measurements and
experiments for a particular observable. The final LogLikelihood value
in the simulation will be the sum of all specified LogLikelihood
instances evaluated at all timepoints, abbreviated by ``Jy``.
"""
def __init__(self, identifier: sp.Symbol, name: str, value: sp.Expr):
"""
Create a new Expression instance.
:param identifier:
unique identifier of the LogLikelihood
:param name:
individual name of the LogLikelihood (does not need to be
unique)
:param value:
formula
"""
if self.__class__.__name__ == "LogLikelihood":
raise RuntimeError(
"This class is meant to be sub-classed, not used directly."
)
super().__init__(identifier, name, value)
class LogLikelihoodY(LogLikelihood):
"""
Loglikelihood for observables
"""
class LogLikelihoodZ(LogLikelihood):
"""
Loglikelihood for event observables
"""
class LogLikelihoodRZ(LogLikelihood):
"""
Loglikelihood for event observables regularization
"""
class Event(ModelQuantity):
"""
An Event defines either a SBML event or a root of the argument of a
Heaviside function. The Heaviside functions will be tracked via the
vector ``h`` during simulation and are needed to inform the solver
about a discontinuity in either the right-hand side or the states
themselves, causing a reinitialization of the solver.
"""
def __init__(
self,
identifier: sp.Symbol,
name: str,
value: sp.Expr,
state_update: sp.Expr | None,
initial_value: bool | None = True,
):
"""
Create a new Event instance.
:param identifier:
unique identifier of the Event
:param name:
individual name of the Event (does not need to be unique)
:param value:
formula for the root / trigger function
:param state_update:
formula for the bolus function (None for Heaviside functions,
zero vector for events without bolus)
:param initial_value:
initial boolean value of the trigger function at t0. If set to
`False`, events may trigger at ``t==t0``, otherwise not.
"""
super().__init__(identifier, name, value)
# add the Event specific components
self._state_update = state_update
self._initial_value = initial_value
# expression(s) for the timepoint(s) at which the event triggers
try:
self._t_root = sp.solve(self.get_val(), amici_time_symbol)
except NotImplementedError:
# the trigger can't be solved for `t`
self._t_root = []
def get_initial_value(self) -> bool:
"""
Return the initial value for the root function.
:return:
initial value formula
"""
return self._initial_value
def __eq__(self, other):
"""
Check equality of events at the level of trigger/root functions, as we
need to collect unique root functions for ``roots.cpp``
"""
return self.get_val() == other.get_val() and (
self.get_initial_value() == other.get_initial_value()
)
def triggers_at_fixed_timepoint(self) -> bool:
"""Check whether the event triggers at a (single) fixed time-point."""
if len(self._t_root) != 1:
return False
return self._t_root[0].is_Number
def get_trigger_time(self) -> sp.Float:
"""Get the time at which the event triggers.
Only for events that trigger at a single fixed time-point.
"""
if not self.triggers_at_fixed_timepoint():
raise NotImplementedError(
"This event does not trigger at a fixed timepoint."
)
return self._t_root[0]
# defines the type of some attributes in DEModel
symbol_to_type = {
SymbolId.SPECIES: DifferentialState,
SymbolId.ALGEBRAIC_STATE: AlgebraicState,
SymbolId.ALGEBRAIC_EQUATION: AlgebraicEquation,
SymbolId.PARAMETER: Parameter,
SymbolId.FIXED_PARAMETER: Constant,
SymbolId.OBSERVABLE: Observable,
SymbolId.EVENT_OBSERVABLE: EventObservable,
SymbolId.SIGMAY: SigmaY,
SymbolId.SIGMAZ: SigmaZ,
SymbolId.LLHY: LogLikelihoodY,
SymbolId.LLHZ: LogLikelihoodZ,
SymbolId.LLHRZ: LogLikelihoodRZ,
SymbolId.EXPRESSION: Expression,
SymbolId.EVENT: Event,
SymbolId.NOISE_PARAMETER: NoiseParameter,
SymbolId.OBSERVABLE_PARAMETER: ObservableParameter,
}