-
Notifications
You must be signed in to change notification settings - Fork 10
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
Make fitting of the GOK more robust in calc_Huntley2006() #664
Conversation
Thanks @mcol. Could you make als dataset I had sent work? |
The testcase I've added is derived from the first dataset you sent me, just with values rounded to 2 decimal places. Your original dataset works too, just very slowly (~30 minutes) as it asks for 10000 MC iterations, and each of them now has to fit 100 models for the simulated curve. I got results testing with |
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.
Upon thorough examination, particularly regarding the extended execution times, it becomes evident that we should consider dividing the computation into distinct processes to harness the capabilities of multicore systems.
I've now parallelized the MC computations. The annoying thing is that we cannot have calls to
The only workable solution I found is to return |
This takes the time to run 10,000 MC iterations on your example with 10 cores to ~5 minutes. |
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 @mcol!
When fitting the simulated curve with the
GOK
model fails, the fit is attempted again with 100 different values forD0
and the best fit is used. This should reduce the number of occasions in which the error message "Could not fit simulatedmodel curve, check suitability of model and parameters" is reported.
When I made the simulated curve of the testcase work, I started getting an error in the fitting of the unfaded curve (the fit failed with "Missing value or an infinity produced when evaluating the model" from
nlsLM
). I reckon that what happens is that we take the starting values from the exponential model, and in that case thec
parameter was negative, so at first I took its absolute value, but then I settled on the following change, which fixed that error and got a solution for the testcase:Fixes #660.