You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Combine model creation/customization and setup/run within a same context block.
Allows to customize models in a more imperative style (i.e., track the order in which grid and flow are defined in the example above), which is sometimes necessary.
Possibility to add options to Model.add(), e.g., for setting user-defined process dependencies or resetting foreign variables.
The text was updated successfully, but these errors were encountered:
This possible feature looks very interesting, and might be helpful for my workflow.
To understand the aim correctly: Is the order that processes are added to the model recorded, and the processes will be initialized in that order at runtime? Or is this order only related to foreign variables and process dependencies?
To understand the aim correctly: Is the order that processes are added to the model recorded, and the processes will be initialized in that order at runtime? Or is this order only related to foreign variables and process dependencies?
It should enable both. This is discussed in #164 (comment) and in #177, although using a different API that is a bit more flexible than the one here above.
An alternative (or orthogonal) option to #52, inspired by PyMC3 and Keras
Sequential
model:The advantages of this approach:
grid
andflow
are defined in the example above), which is sometimes necessary.Model.add()
, e.g., for setting user-defined process dependencies or resetting foreign variables.The text was updated successfully, but these errors were encountered: