quan col
play

quancol . ........ . . ... . ... ... ... ... ... ... - PowerPoint PPT Presentation

Probabilistic Programming of Biology Jane Hillston Joint work with Anastasis Georgoulas and Guido Sanguinetti School of Informatics, University of Edinburgh December 2015 quancol . ........ . . ... . ... ... ... ... ... ...


  1. Probabilistic Programming of Biology Jane Hillston Joint work with Anastasis Georgoulas and Guido Sanguinetti School of Informatics, University of Edinburgh December 2015 quan�col . ........ . . ... . ... ... ... ... ... ... Hillston Dagstuhl 15491 1 / 29

  2. Outline Introduction 1 Probabilistic Programming 2 ProPPA 3 Inference 4 Conclusions 5 Hillston Dagstuhl 15491 2 / 29

  3. Outline Introduction 1 Probabilistic Programming 2 ProPPA 3 Inference 4 Conclusions 5 Hillston Dagstuhl 15491 3 / 29

  4. Modelling There are two approaches to model construction: Machine Learning: extracting a model from the data generated by the system, or refining a model based on system behaviour using statistical techniques. Mechanistic Modelling: starting from a description or hypothesis, construct a model that algorithmically mimics the behaviour of the system, validated against data. Hillston Dagstuhl 15491 4 / 29

  5. Machine Learning prior inference posterior data Hillston Dagstuhl 15491 5 / 29

  6. Machine Learning prior inference posterior data Bayesian statistics Represent belief and uncertainty as probability distributions (prior, posterior). Treat parameters and unobserved variables similarly. Bayes’ Theorem: P ( θ | D ) = P ( θ ) · P ( D | θ ) P ( D ) posterior ∝ prior · likelihood Hillston Dagstuhl 15491 5 / 29

  7. Mechanistic modelling Models are constructed reflecting what is known about the components of the biological system and their behaviour. A variety of formal modelling techniques from theoretical computer science have been proposed to capture the system behaviour. These are then compiled into executable models 1 which can be run to deepen understanding of the model. Executing the model generates data that can be compared with biological data. 1 Jasmin Fisher, Thomas A. Henzinger: Executable cell biology . Nature Biotechnology 2007 Hillston Dagstuhl 15491 6 / 29

  8. Comparing the techniques Data-driven modelling: + rigorous handling of parameter uncertainty - limited or no treatment of stochasticity - in many cases bespoke solutions are required which can limit the size of system which can be handled Hillston Dagstuhl 15491 7 / 29

  9. Comparing the techniques Data-driven modelling: + rigorous handling of parameter uncertainty - limited or no treatment of stochasticity - in many cases bespoke solutions are required which can limit the size of system which can be handled Mechanistic modelling: + general execution ”engine” (deterministic or stochastic) can be reused for many models + models can be used speculatively to investigate roles of parameters, or alternative hypotheses - parameters are assumed to be known and fixed Hillston Dagstuhl 15491 7 / 29

  10. Comparing the techniques Data-driven modelling: + rigorous handling of parameter uncertainty - limited or no treatment of stochasticity - in many cases bespoke solutions are required which can limit the size of system which can be handled Mechanistic modelling: + general execution ”engine” (deterministic or stochastic) can be reused for many models + models can be used speculatively to investigate roles of parameters, or alternative hypotheses - parameters are assumed to be known and fixed Probabilistic Programming seeks to bring elements of both forms of modelling together. Hillston Dagstuhl 15491 7 / 29

  11. Outline Introduction 1 Probabilistic Programming 2 ProPPA 3 Inference 4 Conclusions 5 Hillston Dagstuhl 15491 8 / 29

  12. Probabilistic programming A way to express probabilistic models in a high level language, like software code. Offers automated inference without the need to write bespoke solutions. Platforms: IBAL, Church, Infer.NET, Fun, ... Key actions: specify a distribution, specify observations, infer posterior distribution. Hillston Dagstuhl 15491 9 / 29

  13. Probabilistic Process Algebra What if we could... include information about uncertainty in the model? automatically use observations to refine this uncertainty? do all this in a formal context? Starting from an existing process algebra (Bio-PEPA), we have developed a new language ProPPA that addresses these issues. 2 2 Anastasis Georgoulas, Jane Hillston, Dimitrios Milios, Guido Sanguinetti: Probabilistic Programming Process Algebra . QEST 2014: 249-264. Hillston Dagstuhl 15491 10 / 29

  14. Outline Introduction 1 Probabilistic Programming 2 ProPPA 3 Inference 4 Conclusions 5 Hillston Dagstuhl 15491 11 / 29

  15. Stochastic Process Algebra In a stochastic process algebra actions (reactions) not only have a name or type, but also a stochastic duration or rate. Hillston Dagstuhl 15491 12 / 29

  16. Stochastic Process Algebra In a stochastic process algebra actions (reactions) not only have a name or type, but also a stochastic duration or rate. The language may be used to generate a Markov Process (CTMC). SOS rules LABELLED state transition SPA CTMC Q TRANSITION ✲ ✲ MODEL diagram SYSTEM Q is the infinitesimal generator matrix characterising the CTMC. Hillston Dagstuhl 15491 12 / 29

  17. Stochastic Process Algebra In a stochastic process algebra actions (reactions) not only have a name or type, but also a stochastic duration or rate. The language may be used to generate a Markov Process (CTMC). SOS rules LABELLED state transition SPA CTMC Q TRANSITION ✲ ✲ MODEL diagram SYSTEM Q is the infinitesimal generator matrix characterising the CTMC. Models are typically executed by simulation using Gillespie’s Stochastic Simulation Algorithm (SSA) or similar. Hillston Dagstuhl 15491 12 / 29

  18. The Bio-PEPA abstraction Each species i is described by a species component C i Hillston Dagstuhl 15491 13 / 29

  19. The Bio-PEPA abstraction Each species i is described by a species component C i Each reaction j is associated with an action type α j and its dynamics is described by a specific function f α j Hillston Dagstuhl 15491 13 / 29

  20. The Bio-PEPA abstraction Each species i is described by a species component C i Each reaction j is associated with an action type α j and its dynamics is described by a specific function f α j The species components are then composed together to describe the behaviour of the system. Hillston Dagstuhl 15491 13 / 29

  21. The Bio-PEPA abstraction Each species i is described by a species component C i Each reaction j is associated with an action type α j and its dynamics is described by a specific function f α j The species components are then composed together to describe the behaviour of the system. The semantics is defined by two transition relations: First, a capability relation — is a transition possible? Second, a stochastic relation — gives rate of a transition, derived from the parameters of the model. The result is a Continuous Time Markov Chain (CTMC) Hillston Dagstuhl 15491 13 / 29

  22. A Probabilistic Programming Process Algebra: ProPPA ProPPA aims to retain the features of the stochastic process algebra: simple model description in terms of components rigorous semantics giving an executable version of the model... Hillston Dagstuhl 15491 14 / 29

  23. A Probabilistic Programming Process Algebra: ProPPA ProPPA aims to retain the features of the stochastic process algebra: simple model description in terms of components rigorous semantics giving an executable version of the model... ... whilst also incorporating features of a probabilistic programming language: recording uncertainty in the parameters ability to incorporate observations into models accss to inference to update uncertainty based on observations Hillston Dagstuhl 15491 14 / 29

  24. Example S S I I S stop1 R spread stop2 R k_s = 0.5; k_r = 0.1; kineticLawOf spread : k_s * I * S; kineticLawOf stop1 : k_r * S * S; kineticLawOf stop2 : k_r * S * R; I = (spread,1) ↓ ; S = (spread,1) ↑ + (stop1,1) ↓ + (stop2,1) ↓ ; R = (stop1,1) ↑ + (stop2,1) ↑ ; I[10] ⊲ ⊳ S[5] ⊲ ⊳ R[0] ∗ ∗ Hillston Dagstuhl 15491 15 / 29

  25. Additions Declaring uncertain parameters: k s = Uniform(0,1); k t = Gaussian(0,1); Providing observations: observe(’trace’) Specifying inference approach: infer(’ABC’) Hillston Dagstuhl 15491 16 / 29

  26. Additions S S I I S stop1 R spread stop2 R k_s = Uniform(0,1); k_r = Uniform(0,1); kineticLawOf spread : k_s * I * S; kineticLawOf stop1 : k_r * S * S; kineticLawOf stop2 : k_r * S * R; I = (spread,1) ↓ ; S = (spread,1) ↑ + (stop1,1) ↓ + (stop2,1) ↓ ; R = (stop1,1) ↑ + (stop2,1) ↑ ; I[10] ⊲ ⊳ S[5] ⊲ ⊳ R[0] ∗ ∗ observe(’trace’) infer(’ABC’) //Approximate Bayesian Computation Hillston Dagstuhl 15491 17 / 29

  27. k = 2 parameter model CTMC Hillston Dagstuhl 15491 18 / 29

  28. k ∈ [0,5] parameter model set of CTMCs Hillston Dagstuhl 15491 18 / 29

  29. k ∼ p parameter model μ distribution over CTMCs A ProPPA model should be mapped to something like a distribution over CTMCs – a Probabilistic Constraint Markov Chain. Hillston Dagstuhl 15491 18 / 29

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend