Closed lennybronner closed 1 year ago
This looks good to me! 🎉 I have a branch with a fix to get the cli
to find my .env
file which I'll need to be able to test this out. IMO I say we merge this, then I do some testing, then if there's anything weird, I can correct it in that branch and submit the PR 😄
Description
Previously we had changed how we pass model specific parameters. Instead of having to define and deal with each of the model specific parameters separately, we now use a dictionary that can have any key, value pair for a model parameter and it's value. This means that if we add a parameter in the future we don't need to create variables for it in the client but it can be passed directly to the model using
model_settings
.We had forgotten to add this functionality to the cli, which I do with this PR. I also updated the model client a bit to take full advantage of this change and updated the
GaussianModel
for that too.I also updated the readme with these changes.
Jira Ticket
Test Steps
and
Unit tests have not changed and should all still pass with
Tox