-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow model parameters (constants) to be changed after compilation #213
Comments
Or am I conflating two ideas here @jonc125 ? |
You are conflating protocol inputs and model inputs. They operate completely differently. Model inputs are set from the protocol via the However, it is true there may be an issue, as the only variables marked as parameters in weblab-fc currently are probably those the protocol specifies as model inputs, which wouldn't necessarily include parameters the fitting process wants to alter! (The Chaste-based implementation was subtly different here, as all constant variables implicitly became parameters.) So we may need an extra hook around the |
Thanks
We can do that again, if you like. The comments here and there already say that (but the code disagrees) |
I think that might be desirable actually, so that we can ask the protocol-with-model for variable objects that have already been unit converted. |
Well, they'd only be unit-converted if you've told cellmlmanip (via the protocol?) what units you want them in surely? But that's a good point, the prior would be specifying parameters in units that may not match the model, so conversions will be needed, so we probably need a way for the fitting code to tell the protocol (before it manipulates the model) that it also needs a given set of variables to be treated as model inputs in specific units. |
For fitting, it is essential that we can change model constants (parameters) after model compilation (and protocol association).
It looks to me like the model (generated from
weblab_model.pyx
, extendsCvodeSolver
) currently does not allow its parameters to be changed.Protocol inputs end up in a 'parameters' list, which is referenced by the rhs:
so it points all constants towards the cvode model parameters array (a numpy array)
(Although the syntax looks broken?
parameters
is not a global as far as I can see)So this would allow us to change the parameters post compilation, but I don't see any code that then modifies the model.
E.g., in
Protocol.set_input
:This updates the input_env, but the input_env is not used by the compiled model (it is used in compiling the model)
We also don't have any tests that change inputs that correspond to model parameters (is that a thing?)
👆🏻 these are all fc variables
The text was updated successfully, but these errors were encountered: