-
Notifications
You must be signed in to change notification settings - Fork 74
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
Add fit functions for map computation #872
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First look at this, some structural changes are needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem you have with full_output
is due to the scipy version. In IC we have 1.7.1, while you were using some version >1.9.0, which is when the keyword full_output
was introduced. I will update the scipy version to 1.9.3 and then you can rebase on top of that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is essentially ready, just a bit of formatting. Please remove unnecessary blank lines at the beginning of functions and so on.
94087c9
to
af021e3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add explicitly the equations of the fit functions in the seed-generating functions
1c3616e
to
869cf55
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remember to add the form of the fit function to the docstring in the seed-generating functions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First step towards the new map-building procedure. Everything looks ok and is well tested. Good job!
This PR provides the fundamental elements of the map creation, which are the fit functions. It contains the modification of IC fit function, the basic fit functions (and seeds) needed for the map computation and it also defines the current available fits. Other functions to unify input/output are included.
This is done in a different PR to allow for modularity. This functions are useful for #860, #861, #862...