-
Notifications
You must be signed in to change notification settings - Fork 6
Numericalnim tutorials #51
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
Conversation
|
I've (finally) finished the drafts of 4 articles now. All feedback is appreciated :D On the ODE article, I think I will remove all the comparisons between all the methods and instead just choose a few. It feels like it slows down the build time for no added value. |
|
Nice, I'll see if I can take a look tomorrow or Wednesday |
|
Yup, I will also give it a read soon! |
|
Hi, nice work. Started reading too! Remarks on curve fitting:
|
|
FOR ODE:
|
|
For optimization:
|
|
On interpolation:
|
|
All in all very nice work, I think the examples are all very good for showing up the libraries. Great job! |
Many thanks for the feedback 😄 Most of them have been fixed now.
Good catch! I opted for just using uniform noise instead, I couldn't find any builtin Gaussian noise constructor in arraymancer.
I think
I have added links to most of the methods (except ODE because that list is autogenerated). It's a good point that the reader might want to read up on things more themselves as well.
The problem is so small, so the difference isn't too big between numerical and analytical. It's basically 4 calls to
Not currently, but I should really get a
Very good point, the heatmap turned out rather pretty as well :) You can really see the areas between the points with higher errors. |
Vindaar
left a comment
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.
Great work! Only a bunch of minor typos etc. from my side!
Co-authored-by: Vindaar <basti90@gmail.com>
Co-authored-by: Vindaar <basti90@gmail.com>
Co-authored-by: Vindaar <basti90@gmail.com>
…nto docNumericalnim
Vindaar
left a comment
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.
Great work!
|
Missed this question:
It does not extrapolate, and I'm not sure if it had helped even if it did. Extrapolations are often either constant or linear and none of them are really great for optimization as the first has zero derivative and the second one goes on forever. What could make interpolation useful in optimization, though, is if we can add a bounding box to the optimization routine so that it stops when it reaches the edge and only walks along it instead of crossing it. Also, I have set up docs for numericalnim finally and have added links to it in I think I have taken almost all feedback into consideration now. So I'll read through it a few times tomorrow and merge this in the evening unless I or someone else finds any important errors. |
|
Here we go, finger crossed for no build errors! 🤞 |
It's due time I at least write some tutorials for
numericalnim's functionalities. Plus, it would allow me to clean up my massive README and just link it here 😎