-
Notifications
You must be signed in to change notification settings - Fork 47
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
Failure in callback under Julia-1.5.0-DEV #144
Comments
I suspect the problem originates from this change in 1.5:
NEWS page for 1.5 If we change the algorithm using MixedModels, NLopt
using MixedModels: dataset
m1 = LinearMixedModel( @formula(yield ~ 1 + (1|batch)), dataset(:dyestuff))
m1.optsum.optimizer = :LN_NELDERMEAD
fit!(m1) Nelder-Mead mostly works, as does COBYLA, but BOBYQA never does. I suspect that small differences in the way the memory is being allocated leads to being a small amount off in the relevant pointer and so you get the adjacent |
See also #142. Using |
Thanks for looking into this @palday |
Yes, a new release would be a good idea. I also want to switch over to the JLL artifacts system for building the library (JuliaPackaging/Yggdrasil#1028 and JuliaRegistries/General#14686)… |
Should be fixed by JuliaRegistries/General#14712 |
NLopt is the optimizer used in the
MixedModels
package. Our tests have started failing under Julia-1.5.0-DEV and underjulia-nightly in a callback to evaluate the objective function.
A simple example is transcript2.txt
I am using the MixedModels#master there but I think the same will occur under the latest release.
The text was updated successfully, but these errors were encountered: