Hi all,
I am trying to implement a box minimization, but am struggling to do so.
I am at the moment trying to run the line:
results = optimize(x -> blp_iteration(dt, z, x, W, random_coeff, fixed_coeff,agents), init, lower, upper, Fminbox(BFGS()), Optim.Options(f_tol = 1e-40, x_tol = 1e-40, g_tol = 1e-40, iterations = 5000))
and have been using Minimizing a function - Optim.jl to figure it out. There, it suggests running Fminbox{BFGS}() which does not work at all for me. What I get is the error:
This error does not come, when I remove lower, upper, and Fminbox(). Then, it just manages to solve it.
Best,
Jakob