How can I get a future prediction of a cell in dynamo? #413
-
Dear authors, Given each cell's expressional profile (x) and velocity (v), I hope to get predicted expression shortly after this moment (x + v Δt, Δt is a hyperparameter denoting a short period of time). I am developing a visualization method depending on this future prediction. To my knowledge, An intuitive solution I came up with is I am looking forward to your answers. Thank you very much. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Dynamo learns a vector field so it can be used to predict over any arbitrary time and from any arbitrary initial states. At the core it peforms an integration of the vector field (integration of an ode function given some initial states, using scipy.integrate or scipy.integrate.solve_ivp) --- key ideas in numerical differential equation analyses. Please check the source code of our Example on using fate:
|
Beta Was this translation helpful? Give feedback.
Dynamo learns a vector field so it can be used to predict over any arbitrary time and from any arbitrary initial states. At the core it peforms an integration of the vector field (integration of an ode function given some initial states, using scipy.integrate or scipy.integrate.solve_ivp) --- key ideas in numerical differential equation analyses. Please check the source code of our
dyn.pd.fate
(see below) function and the animations in our tutorial.Example on using fate: