i have the following code:
solution = Optim.minimizer(optimize(θ->J(X,θ),θ,g!,LBFGS())))
where X,θ are arrays and g! is the gradient function. I get the following error only when trying to specify the gradient function g!
MethodError: no method matching optimize(::getfield(Main, Symbol(“##174#175”)), ::Array{Float64,1}, ::typeof(g!), ::LBFGS{Nothing,LineSearches.InitialStatic{Float64},LineSearches.HagerZhang{Float64,Base.RefValue{Bool}},getfield(Optim, Symbol(“##19#21”))})
Any suggestions?