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
We need to set up a framework for setting and getting initial values for a model; one that doesn't rely on Aesara's test values.
In many cases, this may be as simple as renaming parts of the existing API (e.g. Model.test_point to Model.initial_point, Model.check_test_point to Model.check_initial_point, change the testvalDistribution argument to initial_value, etc.), but, in some cases, we'll need to add new variables and logic.
Specifically, it seems like we'll need to store the initial values in the Model object and, in multiple places, obtain those values from a Model object.